Skip to content

Commit 79e65ee

Browse files
committed
Add npm audit CI job
1 parent 9267387 commit 79e65ee

File tree

4 files changed

+311
-146
lines changed

4 files changed

+311
-146
lines changed

.github/workflows/main_ci.yml

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ name: Run Tests
33
on: [push]
44

55
jobs:
6+
audit:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: 12
13+
registry-url: https://registry.npmjs.org/
14+
- run: npm ci
15+
- run: npm run audit
616
unit:
717
runs-on: ubuntu-latest
818
steps:

.npm-audit-whitelister.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]

0 commit comments

Comments
 (0)