-
Notifications
You must be signed in to change notification settings - Fork 11.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set max old space size on coverage and test (#5382)
Co-authored-by: Hadrien Croubois <[email protected]>
- Loading branch information
Showing
3 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This script sets the node `--max-old-space-size` to 8192 if it is not set already. | ||
# All existing `NODE_OPTIONS` are retained as is. | ||
|
||
export NODE_OPTIONS="${NODE_OPTIONS:-}" | ||
|
||
if [[ $NODE_OPTIONS != *"--max-old-space-size"* ]]; then | ||
export NODE_OPTIONS="${NODE_OPTIONS} --max-old-space-size=8192" | ||
fi |