Skip to content

Commit

Permalink
Merge 3256346 into 7274c78
Browse files Browse the repository at this point in the history
  • Loading branch information
aabmass committed Sep 21, 2023
2 parents 7274c78 + 3256346 commit 907e41b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,20 @@ jobs:
matrix:
node: [14, 16, 18, 19]
include:
# use latest npm by default
- npm-version: latest
- node: 14
npm-version: ^7
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: node --version
# TODO: remove once node 14 is dropped
- name: Upgrade to latest npm to support lockfile v2
- name: Install npm@${{ matrix.npm-version }}
if: matrix.npm-version
run: npm install -g npm@${{ matrix.npm-version }}
- run: |
node --version
npm --version
- run: npm install
- run: npm test
- run: npm run codecov
Expand Down

0 comments on commit 907e41b

Please sign in to comment.