From 6570e3fba17d9df805ed697591bc6c929e7cd44d Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Sun, 19 Jan 2020 09:46:48 +0100 Subject: [PATCH] chore: add snyk as an action (#230) --- .github/workflows/security.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/security.yml 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 }}