Skip to content

Add snyk yml into GitHub Actions for CI/CD #1

Add snyk yml into GitHub Actions for CI/CD

Add snyk yml into GitHub Actions for CI/CD #1

Workflow file for this run

name: Example workflow for Node using Snyk
on: push
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 }}