-
-
Notifications
You must be signed in to change notification settings - Fork 34
27 lines (24 loc) 路 744 Bytes
/
Copy pathnjsscan-analysis.yml
File metadata and controls
27 lines (24 loc) 路 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This workflow integrates njsscan with GitHub's Code Scanning feature
# nodejsscan is a static security code scanner that finds insecure code patterns in your Node.js applications
name: NodeJS Scan - Static Application Testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
njsscan:
runs-on: ubuntu-latest
name: njsscan code scanning
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: nodejsscan scan
id: njsscan
uses: ajinabraham/njsscan-action@master
with:
args: '. --sarif --output results.sarif || true'
- name: Upload njsscan report
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: results.sarif