diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 00000000..d168b53c --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,16 @@ +name: CI Publish, with security check using Snyk +on: + push: + branches: + - master +jobs: + actions: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Run Snyk to check for vulnerabilities + uses: snyk/actions/node@master + env: + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + with: + command: monitor