Skip to content

Commit c83b7e3

Browse files
authored
chore(CI): added snyk action (#1030)
1 parent b7547f1 commit c83b7e3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Diff for: .github/workflows/Security.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Security Flow
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- develop
8+
pull_request:
9+
branches:
10+
- master
11+
- develop
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

Comments
 (0)