We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5361b0d commit 941826eCopy full SHA for 941826e
1 file changed
‎.github/actions/setup-and-test/action.yml‎
@@ -45,10 +45,10 @@ runs:
45
shell: bash
46
- name: Run tests
47
run: |
48
- if [ "$RUN_TEST" = "0" ]; then
49
- echo "Skipping tests. Set RUN_TEST=1 to enable."
50
- else
+ if [ "$RUN_TEST" = "1" ]; then
51
pnpm vitest --coverage --reporter=verbose
+ else
+ echo "Skipping tests. Set RUN_TEST=1 to enable."
52
fi
53
env:
54
SMOKE: 1
0 commit comments