From 7258f3813f1ce3224c508cf257bb17181bc761fe Mon Sep 17 00:00:00 2001 From: Max P Date: Fri, 16 Aug 2024 12:04:02 +0200 Subject: [PATCH] Update test script in DeployTypeDoc workflow Modified the GitHub Actions DeployTypeDoc workflow to run `npm run test:coverage` instead of `npm run test:verbose`. This change switches from verbose test output to generating test coverage, aiming to improve code quality insights during deployment. --- .github/workflows/DeployTypeDoc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/DeployTypeDoc.yml b/.github/workflows/DeployTypeDoc.yml index 13f6784..cc7b0ef 100644 --- a/.github/workflows/DeployTypeDoc.yml +++ b/.github/workflows/DeployTypeDoc.yml @@ -26,7 +26,7 @@ jobs: - name: Run Tests and Generate Coverage run: | - npm run test:verbose || echo "Ignoring test failures" + npm run test:coverage || echo "Ignoring test failures" - name: Run TypeDoc run: npx typedoc