Skip to content

Commit 3f9f322

Browse files
committed
ci
1 parent 92429f1 commit 3f9f322

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
@@ -9,7 +9,7 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
env:
12-
NODE_OPTIONS: "--max_old_space_size=4096"
12+
NODE_OPTIONS: "--max_old_space_size=8192"
1313
strategy:
1414
matrix:
1515
# https://nodejs.org/en/about/previous-releases
@@ -28,13 +28,13 @@ jobs:
2828
node-version: ${{ matrix.node-version }}
2929
cache: 'pnpm'
3030
- name: Install dependencies for packages
31-
run: pnpm install --filter "./packages/**"
31+
run: pnpm install --filter "./packages/**" --frozen-lockfile
3232
- name: Build all packages
3333
run: pnpm build
3434
- name: Run linter
3535
run: pnpm lint
3636
- name: Install dependencies for examples
37-
run: pnpm install --filter "./examples/**"
37+
run: pnpm install --filter "./examples/**" --frozen-lockfile
3838
- name: Compile examples
3939
run: pnpm -r build-check
4040
- name: Run tests

0 commit comments

Comments
 (0)