Skip to content

Commit f507ec4

Browse files
committed
ci
1 parent 82a969b commit f507ec4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ on:
88
jobs:
99
test:
1010
runs-on: ubuntu-latest
11-
env:
12-
NODE_OPTIONS: "--max_old_space_size=8192 --max-old-space-size=8192"
1311
strategy:
1412
matrix:
1513
# https://nodejs.org/en/about/previous-releases
@@ -28,7 +26,9 @@ jobs:
2826
node-version: ${{ matrix.node-version }}
2927
cache: 'pnpm'
3028
- name: Install dependencies
31-
run: pnpm install
29+
run: |
30+
export NODE_OPTIONS="--max_old_space_size=4096"
31+
pnpm install
3232
- name: Build all packages
3333
run: pnpm build
3434
- name: Run linter

0 commit comments

Comments
 (0)