Skip to content

Commit

Permalink
Fix failing builds by using pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
switz committed Dec 13, 2024
1 parent 76b8b8a commit 5c871eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:

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

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
cache: 'pnpm'
- run: pnpm install
- run: npm run bands
- run: npm run build

0 comments on commit 5c871eb

Please sign in to comment.