Skip to content

Commit

Permalink
ci(dependencies): moved the npm audit signatures check from the mat…
Browse files Browse the repository at this point in the history
…rix job to the verify job

since some supported node versions bundle npm versions that do not support `npm audit signatures`,
so they fallback to `npm audit`, which isnt intended in this workflow
  • Loading branch information
travi committed Aug 24, 2023
1 parent 5e383f7 commit 28cd83f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
cache: npm
node-version: ${{ matrix.node }}
- run: npm clean-install
- run: npm audit signatures
- run: npm test
verify:
runs-on: ubuntu-latest
Expand All @@ -42,6 +41,7 @@ jobs:
node-version-file: .nvmrc
cache: npm
- run: npm clean-install
- run: npm audit signatures
- run: npm test
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
release:
Expand Down

0 comments on commit 28cd83f

Please sign in to comment.