1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-04-18 02:31:37 +07:00

chore: add snyk as an action (#230)

This commit is contained in:
Juan Picado @jotadeveloper 2020-01-19 09:46:48 +01:00 committed by GitHub
parent d4f2720994
commit 6570e3fba1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
.github/workflows/security.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: Security Flow
on: push
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/node@0.1.0
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}