diff --git a/.github/workflows/run-test-template.yml b/.github/workflows/run-test-template.yml index 94af98f7866..fe694382b76 100644 --- a/.github/workflows/run-test-template.yml +++ b/.github/workflows/run-test-template.yml @@ -23,4 +23,4 @@ jobs: - name: Install Node.js dependencies run: npm ci - name: Run ${{ inputs.project }} tests - run: npx vitest --project ${{ inputs.project }} ${{ !runner.debug && '--silent' }} + run: npx vitest --project ${{ inputs.project }} ${{ !runner.debug && '--silent' || '' }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0e5184252b2..80538f90849 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,7 +32,7 @@ jobs: run: npm ci - name: Run Pre-test working-directory: tests-action - run: npx vitest run --project pre ${{ !runner.debug && '--silent' }} + run: npx vitest run --project pre ${{ !runner.debug && '--silent' || '' }} run-tests: name: Run Tests