diff --git a/.github/workflows/run-test-template.yml b/.github/workflows/run-test-template.yml index fe694382b76..e7b0a42ca63 100644 --- a/.github/workflows/run-test-template.yml +++ b/.github/workflows/run-test-template.yml @@ -22,5 +22,5 @@ jobs: node-version: 20 - name: Install Node.js dependencies run: npm ci - - name: Run ${{ inputs.project }} tests + - name: Run tests run: npx vitest --project ${{ inputs.project }} ${{ !runner.debug && '--silent' || '' }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b46fe054913..685c5d24f08 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,11 +40,11 @@ jobs: strategy: matrix: project: - - misc - - abilities - - items - - moves - - battle + # - misc + - "src/test/abilities/**/*.{test,spec}.ts" + # - items + # - moves + # - battle uses: ./.github/workflows/run-test-template.yml with: project: ${{ matrix.project }} \ No newline at end of file