Skip to content

initial gitignore for service; other small stuff (#326) #387

initial gitignore for service; other small stuff (#326)

initial gitignore for service; other small stuff (#326) #387

Workflow file for this run

name: Security
on:
push:
branches:
- "*"
pull_request:
branches: [main]
jobs:
snyk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Create output directory
run: mkdir ~/sarif
- name: Run Snyk to check for vulnerabilities (SCA)
uses: snyk/actions/node@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
command: test
args: --all-projects --severity-threshold=critical --sarif-file-output=~/sarif/sca.sarif
- name: list
run: "ls -a ~/sarif"
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ~/sarif