Skip to content

Commit 9e718c0

Browse files
authored
Workaround for pnpm install error with node 24.4 (#226)
1 parent ad05c65 commit 9e718c0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313
strategy:
1414
matrix:
1515
# https://nodejs.org/en/about/previous-releases
16-
node-version: [20, 22, 24]
16+
# Using 24.3.x due to https://github.com/pnpm/pnpm/issues/9743
17+
node-version: ['20', '22', '24.3.x']
1718
steps:
1819
- name: Checkout repository
1920
uses: actions/checkout@v4
@@ -36,4 +37,4 @@ jobs:
3637
- name: Compile examples
3738
run: pnpm -r build-check
3839
- name: Run tests
39-
run: pnpm test
40+
run: pnpm test

0 commit comments

Comments
 (0)