Skip to content

Commit

Permalink
build: Fix CI/CD audit setup
Browse files Browse the repository at this point in the history
  • Loading branch information
joerideg committed Aug 27, 2024
1 parent 299c564 commit f86bd8c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Audit production dependencies
run: pnpm audit --prod --audit-level high

- name: Validate current commit (last commit) with commitlint
if: github.event_name == 'push'
run: pnpm commitlint --last --verbose
Expand Down Expand Up @@ -113,7 +116,8 @@ jobs:
- name:
Verify the integrity of provenance attestations and registry signatures for installed
dependencies
run: pnpm audit signatures
# This is not a mistake, pnpm does not support auditing signatures yet
run: npm audit signatures

- name: Install dependencies
run: pnpm install
Expand Down

0 comments on commit f86bd8c

Please sign in to comment.