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 f507ec4 commit ae4bd3bCopy full SHA for ae4bd3b
.github/workflows/test.yml
@@ -8,6 +8,8 @@ on:
8
jobs:
9
test:
10
runs-on: ubuntu-latest
11
+ env:
12
+ NODE_OPTIONS: "--max_old_space_size=4096"
13
strategy:
14
matrix:
15
# https://nodejs.org/en/about/previous-releases
@@ -26,9 +28,7 @@ jobs:
26
28
node-version: ${{ matrix.node-version }}
27
29
cache: 'pnpm'
30
- name: Install dependencies
- run: |
- export NODE_OPTIONS="--max_old_space_size=4096"
31
- pnpm install
+ run: pnpm install --network-concurrency 1
32
- name: Build all packages
33
run: pnpm build
34
- name: Run linter
0 commit comments