Skip to content

Commit

Permalink
ci: lock to npm 10.7 when running on node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Maj committed Jul 19, 2024
1 parent ea00fc6 commit 33ab623
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,18 @@ jobs:
- types
- web-api
- webhook
include:
- node-version: 22.x
# npm 10.8, which comes w/ node 22, seems to cause issues when running npm i
npm: 10.7.0
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- if: ${{ matrix.npm }}
run: npm install -g npm@${{ matrix.npm }}
- name: Get Development Dependencies
run: npm i
- name: Build and Run Tests in Each Package
Expand Down

0 comments on commit 33ab623

Please sign in to comment.