🔧 chore: increase NODE_OPTIONS memory limit to 8GB across configurations

- Updated NODE_OPTIONS from 6144MB to 8192MB in Dockerfile, package.json scripts, GitHub workflows, and environment configurations.
- Ensured consistent memory allocation for builds and tests to improve performance.

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei
2025-12-29 14:35:04 +08:00
parent 2fc3b4238a
commit 5380f76ed1
6 changed files with 12 additions and 11 deletions

View File

@@ -89,7 +89,7 @@ const build = async () => {
cwd: TEMP_DIR,
env: {
...process.env,
NODE_OPTIONS: process.env.NODE_OPTIONS || '--max-old-space-size=6144',
NODE_OPTIONS: process.env.NODE_OPTIONS || '--max-old-space-size=8192',
},
stdio: 'inherit',
});