Skip to content

Commit

Permalink
chore(build): remove npm installation from build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
aabmass committed Sep 21, 2023
1 parent 7274c78 commit caaa193
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,12 @@ jobs:
strategy:
matrix:
node: [14, 16, 18, 19]
include:
# use latest npm by default
- npm-version: latest
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
run: npm install -g npm@${{ matrix.npm-version }}
- run: npm install
- run: npm test
- run: npm run codecov
Expand Down

0 comments on commit caaa193

Please sign in to comment.