Skip to content

Commit d2dc4e0

Browse files
committed
chore: 💚 possible fix for JavaScript heap out of memory
1 parent d8495a3 commit d2dc4e0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
${{ runner.os }}-yarn-
2929
3030
- name: Install Dependencies
31-
run: yarn
31+
run: |
32+
export NODE_OPTIONS="--max_old_space_size=4096"
33+
yarn install
3234

3335
- name: Build
3436
run: yarn build

0 commit comments

Comments
 (0)