Skip to content

Commit

Permalink
chore: Add audit workflow (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinszuchet authored Apr 24, 2023
1 parent 0686e10 commit 9743c69
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Audit

on: [push, pull_request]

jobs:
audit:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Clean install dependencies
run: npm ci --legacy-peer-deps #TODO: remove this flag once we get rid of tslint

- name: Audit signatures
run: npm audit signatures

0 comments on commit 9743c69

Please sign in to comment.