Skip to content

Commit

Permalink
npm
Browse files Browse the repository at this point in the history
  • Loading branch information
matux committed Feb 28, 2024
1 parent 7ec9a4f commit 510762c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ jobs:

strategy:
matrix:
node: [14, 16, 18, 20]
include:
- node: 14
npm: 8
- node: 16
npm: 8
- node: 18
npm: 9
- node: 20
npm: 10

steps:
- name: Checkout
Expand All @@ -26,7 +34,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Update npm
run: npm install -g npm@latest
run: npm install -g npm@^${{ matrix.npm }}

- name: Cache
uses: actions/cache@v4
Expand Down

0 comments on commit 510762c

Please sign in to comment.