Skip to content

Add workflow for security scan on push #1

Add workflow for security scan on push

Add workflow for security scan on push #1

Workflow file for this run

name: Snyk Security Scan
on: "push"
# schedule:
# - cron: "15 * * * *"
jobs:
security:
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 }}