Skip to content

Commit

Permalink
Add 'npm audit signatures' to CI workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
sanason committed Nov 12, 2024
1 parent eac2cfb commit a9b4842
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ jobs:
run: npm ci
- name: Lint javascript
run: npm run lint
audit_dependencies:
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: 'npm'
- name: Install node dependencies
run: npm ci
- name: Validate npm package signatures
run: npm audit signatures
test:
needs: lint
runs-on: ubuntu-latest
Expand Down

0 comments on commit a9b4842

Please sign in to comment.