ci(signatures): moved the audit step to the non-matrix stage

since older versions of npm dont support `npm audit signatures` and instead simply audit for vulnerabilities
This commit is contained in:
Matt Travi 2023-04-28 16:33:03 -05:00
parent ef998acd4d
commit e046ece3cb
No known key found for this signature in database
GPG Key ID: 8C173646C24FED70

View File

@ -36,7 +36,6 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm clean-install
- run: npm audit signatures
- name: Ensure dependencies are compatible with the version of node
run: npx ls-engines
- run: npm run test:ci
@ -53,4 +52,5 @@ jobs:
node-version: lts/*
cache: npm
- run: npm clean-install
- run: npm audit signatures
- run: npm run lint