Skip to content

Commit

Permalink
👷 feat: Add audit workflow
Browse files Browse the repository at this point in the history
Signed-off-by: drptbl <[email protected]>
  • Loading branch information
drptbl committed Feb 4, 2024
1 parent a3a1a2f commit 948075c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 🔎 Audit

on:
push:
branches:
- new-dawn
pull_request:
paths:
- 'pnpm-*.yaml'
- 'package.json'
- 'packages/**/package.json'
- 'wallets/**/package.json'
- 'examples/**/package.json'
- 'release/package.json'
- 'docs/package.json'

jobs:
audit:
name: Audit dependencies
runs-on: ubuntu-latest
container:
image: synthetixio/docker-sec-tools:20.11-alpine

steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # [email protected]

- name: Audit dependencies
run: audit-ci --critical --report-type full

0 comments on commit 948075c

Please sign in to comment.