diff --git a/.github/workflows/Security.yml b/.github/workflows/Security.yml new file mode 100644 index 000000000..5e65174c2 --- /dev/null +++ b/.github/workflows/Security.yml @@ -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 }}