ci: added snyk workflow #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, edited, reopened] | ||
jobs: | ||
lint: | ||
name: Check code quality | ||
uses: ./.github/workflows/lint.yaml | ||
conventional-commits: | ||
name: Check for conventional commits compliance | ||
uses: ./.github/workflows/conventional-commits.yaml | ||
snyk: | ||
name: Scan dependencies | ||
uses: ./.github/workflows/snyk.yaml | ||
Check failure on line 17 in .github/workflows/on-pull-request.yaml GitHub Actions / Pull RequestInvalid workflow file
|
||
with: | ||
severity-treshold: low | ||
permissions: | ||
contents: read | ||
security-events: write |