We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82a969b commit f507ec4Copy full SHA for f507ec4
.github/workflows/test.yml
@@ -8,8 +8,6 @@ on:
8
jobs:
9
test:
10
runs-on: ubuntu-latest
11
- env:
12
- NODE_OPTIONS: "--max_old_space_size=8192 --max-old-space-size=8192"
13
strategy:
14
matrix:
15
# https://nodejs.org/en/about/previous-releases
@@ -28,7 +26,9 @@ jobs:
28
26
node-version: ${{ matrix.node-version }}
29
27
cache: 'pnpm'
30
- name: Install dependencies
31
- run: pnpm install
+ run: |
+ export NODE_OPTIONS="--max_old_space_size=4096"
+ pnpm install
32
- name: Build all packages
33
run: pnpm build
34
- name: Run linter
0 commit comments