mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-19 23:02:19 +02:00
fix printing false
instead of empty-string on runner-debug check
This commit is contained in:
parent
94495320ca
commit
f0fda3854f
2
.github/workflows/run-test-template.yml
vendored
2
.github/workflows/run-test-template.yml
vendored
@ -23,4 +23,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 && '--silent' }}
|
run: npx vitest --project ${{ inputs.project }} ${{ !runner.debug && '--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 && '--silent' }}
|
run: npx vitest run --project pre ${{ !runner.debug && '--silent' || '' }}
|
||||||
|
|
||||||
run-tests:
|
run-tests:
|
||||||
name: Run Tests
|
name: Run Tests
|
||||||
|
Loading…
Reference in New Issue
Block a user