We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7547f1 commit c83b7e3Copy full SHA for c83b7e3
.github/workflows/Security.yml
@@ -0,0 +1,20 @@
1
+name: Security Flow
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - develop
8
+ pull_request:
9
10
11
12
+jobs:
13
+ security:
14
+ runs-on: ubuntu-16.04
15
+ steps:
16
+ - uses: actions/checkout@master
17
+ - name: Run Snyk to check for vulnerabilities
18
+ uses: snyk/actions/node@master
19
+ env:
20
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
0 commit comments