diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml new file mode 100644 index 0000000..7d0f665 --- /dev/null +++ b/.github/workflows/security.yml @@ -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 }}