1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

Remove runinband for actions

This commit is contained in:
Adria Navarro 2023-05-22 17:02:21 +02:00
parent a1d47aea3e
commit 9f9c2d66e0
2 changed files with 4 additions and 4 deletions

View file

@ -5,8 +5,8 @@ if [[ -n $CI ]]
then
# --runInBand performs better in ci where resources are limited
export NODE_OPTIONS="--max-old-space-size=4096"
echo "jest --coverage --runInBand --forceExit"
jest --coverage --runInBand --forceExit
echo "jest --coverage --forceExit"
jest --coverage --forceExit
else
# --maxWorkers performs better in development
echo "jest --coverage --maxWorkers=2 --forceExit"

View file

@ -4,8 +4,8 @@ set -e
if [[ -n $CI ]]
then
# --runInBand performs better in ci where resources are limited
echo "jest --coverage --runInBand --forceExit"
jest --coverage --runInBand --forceExit
echo "jest --coverage --forceExit"
jest --coverage --forceExit
else
# --maxWorkers performs better in development
echo "jest --coverage --maxWorkers=2 --forceExit"