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 3781a77 commit 41a823fCopy full SHA for 41a823f
.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=6144
13
strategy:
14
matrix:
15
# https://nodejs.org/en/about/previous-releases
@@ -25,7 +23,10 @@ jobs:
25
23
uses: pnpm/action-setup@v4
26
24
with:
27
version: 10.13.1
28
- run_install: true
+ run_install: false
+ - name: Install dependencies
+ # lower parallelism to save RAM
29
+ run: pnpm install --frozen-lockfile --workspace-concurrency=1
30
- name: Build all packages
31
run: pnpm build
32
- name: Run linter
0 commit comments