Skip to content

Commit

Permalink
chore: add sca scan
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepak-Kharah committed Dec 8, 2023
1 parent 5ef8408 commit 7a3e454
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/sca-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Source Composition Analysis Scan
on:
pull_request:
types: [opened, synchronize, reopened]
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 }}
with:
args: --all-projects --fail-on=all

0 comments on commit 7a3e454

Please sign in to comment.