diff --git a/.github/workflows/run-test-template.yml b/.github/workflows/run-test-template.yml index 8c80aa83648..94af98f7866 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 }} ${{ inputs.options }} + run: npx vitest --project ${{ inputs.project }} ${{ !runner.debug && '--silent' }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1a33f8ed018..0e5184252b2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -42,5 +42,4 @@ jobs: project: [misc, abilities, items, moves, battle] uses: ./.github/workflows/run-test-template.yml with: - project: ${{ matrix.project }} - options: ${{ !runner.debug && '--silent' }} \ No newline at end of file + project: ${{ matrix.project }} \ No newline at end of file