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 dbeffa8 commit dd430b5Copy full SHA for dd430b5
.github/workflows/sca-scan.yml
@@ -0,0 +1,16 @@
1
+name: Source Composition Analysis Scan
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
+ types: [opened, synchronize, reopened]
8
+jobs:
9
+ security:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@master
13
+ - name: Run Snyk to check for vulnerabilities
14
+ uses: snyk/actions/node@master
15
+ env:
16
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
0 commit comments