We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cae569f commit 6db2e0dCopy full SHA for 6db2e0d
.github/workflows/node.js.yml
@@ -61,6 +61,10 @@ jobs:
61
run: |
62
export NODE_OPTIONS="--max-old-space-size=8192"
63
NODE_OPTIONS=--max-old-space-size=8192 node --max-old-space-size=8192 ./node_modules/.bin/jest --no-watchman --silent --logHeapUsage --bail --runInBand --forceExit --shard=${{ matrix.shard }}/${{ strategy.job-total }} --coverage
64
+ if [ $exit_code -ne 0 ]; then
65
+ echo "Some tests failed. Exiting with status code $exit_code"
66
+ exit $exit_code
67
+ fi
68
env:
69
NODE_OPTIONS: "--max-old-space-size=10240"
70
- name: Set output variables for badges
0 commit comments