Skip to content

Commit

Permalink
Merge pull request WebOfTrust#175 from lenkan/fix-vulnerabilities
Browse files Browse the repository at this point in the history
add npm audit to workflow, remove vulnerable packages
  • Loading branch information
lenkan authored Dec 13, 2023
2 parents 517b981 + 400d561 commit d311c1e
Show file tree
Hide file tree
Showing 4 changed files with 842 additions and 6,400 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,16 @@ jobs:
run: docker compose logs
if: always()

audit:
name: Find vulnerabilities
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: '18.12.1'
cache: 'npm'
- name: Run audit
run: npm audit
Loading

0 comments on commit d311c1e

Please sign in to comment.