We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e491d7 commit 67bca5aCopy full SHA for 67bca5a
.github/workflows/security_scan.yml
@@ -0,0 +1,27 @@
1
+name: Security Scans
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ workflow_dispatch:
9
10
+jobs:
11
+ security-scans:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout Code
16
+ uses: actions/checkout@v3
17
18
+ - name: Setup Node.js
19
+ uses: actions/setup-node@v3
20
+ with:
21
+ node-version: '18'
22
23
+ - name: Install Dependencies
24
+ run: npm install
25
26
+ - name: Run npm Audit
27
+ run: npm audit --audit-level=high || echo "npm audit failed"
0 commit comments