Skip to content

Commit 5c871eb

Browse files
committed
Fix failing builds by using pnpm
1 parent 76b8b8a commit 5c871eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/node.js.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [18.x, 20.x]
19+
node-version: [20.x, 22.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:
2323
- uses: actions/checkout@v2
2424
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
cache: 'yarn'
29-
- run: yarn install
28+
cache: 'pnpm'
29+
- run: pnpm install
3030
- run: npm run bands
3131
- run: npm run build

0 commit comments

Comments
 (0)