GitHub Actions 执行Node命令打包一个项目,报错FATAL ERROR: Reached heap limit Allocation failed - JavaScript heap out of memory
原因:GitHub Actions Nodejs运行时环境使用内存是有大小限制的,64位系统约为1.4GB,32位系统约为0.7GB,该次构建内存使用超出了默认大小
解决:export NODE_OPTIONS="--max-old-space-size=4096"
GitHub Actions 执行Node命令打包一个项目,报错FATAL ERROR: Reached heap limit Allocation failed - JavaScript heap out of memory
原因:GitHub Actions Nodejs运行时环境使用内存是有大小限制的,64位系统约为1.4GB,32位系统约为0.7GB,该次构建内存使用超出了默认大小
解决:export NODE_OPTIONS="--max-old-space-size=4096"
评论区