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 fdb4a6c commit 2008a38Copy full SHA for 2008a38
.github/workflows/test.yml
@@ -30,9 +30,11 @@ jobs:
30
cache: 'pnpm'
31
- name: Configure pnpm (low concurrency)
32
run: |
33
- echo "child-concurrency=2" >> .npmrc
+ echo "child-concurrency=1" >> .npmrc
34
- name: Install dependencies
35
- run: pnpm install --network-concurrency 2
+ run: |
36
+ export NODE_OPTIONS="--max_old_space_size=4096"
37
+ pnpm install --network-concurrency 1
38
- name: Build all packages
39
run: pnpm build
40
- name: Run linter
0 commit comments