Skip to content

Commit

Permalink
chore(CI): added snyk action (#1030)
Browse files Browse the repository at this point in the history
  • Loading branch information
anikethsaha authored Feb 22, 2020
1 parent b7547f1 commit c83b7e3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/Security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Security Flow

on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
security:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/node@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 comments on commit c83b7e3

Please sign in to comment.