Skip to content

Commit

Permalink
[CONFIG] Github action: Snyk code analysis added.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonzalo Diaz committed May 14, 2024
1 parent 9239c7a commit fcc53ed
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/node-snyk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET Snyk Code analysis

on:
push:
branches: [ main, develop, feature/* ]
pull_request:
branches: [ main ]

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 }}

0 comments on commit fcc53ed

Please sign in to comment.