Skip to content

Commit 96655a9

Browse files
committed
fix: node out of space error
1 parent 46bea85 commit 96655a9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Setup Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v3
2121
with:
22-
node-version: '18'
23-
cache: 'npm'
22+
node-version: "18"
23+
cache: "npm"
2424

2525
- name: Install dependencies
2626
run: npm ci
2727

2828
- name: Build
29+
env:
30+
NODE_OPTIONS: "--max-old-space-size=8192"
2931
run: npm run build

0 commit comments

Comments
 (0)