Tools: Trying to fix memory allocation crash on CI

pull/8951/head
Laurent Cozic 2023-09-24 19:01:19 +01:00
parent 24952c2f4a
commit 3a4942a5a4
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ if [ "$IS_PULL_REQUEST" == "1" ] || [ "$IS_DEV_BRANCH" = "1" ]; then
# Allocation failed - JavaScript heap out of memory
#
# https://stackoverflow.com/questions/38558989
export NODE_OPTIONS="--max-old-space-size=8192"
export NODE_OPTIONS="--max-old-space-size=32768"
yarn run test-ci
testResult=$?
if [ $testResult -ne 0 ]; then