mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-18 22:32:32 +02:00
use 1
instead of '1'
to check runner.debug
This commit is contained in:
parent
108f3e37e5
commit
53a22a3c9f
2
.github/workflows/run-test-template.yml
vendored
2
.github/workflows/run-test-template.yml
vendored
@ -20,4 +20,4 @@ jobs:
|
|||||||
- name: Install Node.js dependencies
|
- name: Install Node.js dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
- name: Run ${{ inputs.project }} tests
|
- name: Run ${{ inputs.project }} tests
|
||||||
run: npx vitest --project ${{ inputs.project }} ${{ runner.debug == '1' && '' || '--silent' }}
|
run: npx vitest --project ${{ inputs.project }} ${{ runner.debug == 1 && '' || '--silent' }}
|
||||||
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@ -32,7 +32,7 @@ jobs:
|
|||||||
run: npm ci
|
run: npm ci
|
||||||
- name: Run Pre-test
|
- name: Run Pre-test
|
||||||
working-directory: tests-action
|
working-directory: tests-action
|
||||||
run: npx vitest run --project pre ${{ runner.debug == '1' && '' || '--silent' }}
|
run: npx vitest run --project pre ${{ runner.debug == 1 && '' || '--silent' }}
|
||||||
|
|
||||||
run-tests:
|
run-tests:
|
||||||
name: Run Tests
|
name: Run Tests
|
||||||
|
Loading…
Reference in New Issue
Block a user