Skip to content

Commit 7c9b0cd

Browse files
committed
Add workflow for security scan on push
1 parent 05c5065 commit 7c9b0cd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/security-scan.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Snyk Security Scan
2+
on: "push"
3+
# schedule:
4+
# - cron: "15 * * * *"
5+
jobs:
6+
security:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- name: Run Snyk to check for vulnerabilities
11+
uses: snyk/actions/node@master
12+
env:
13+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 commit comments

Comments
 (0)