mango-v4-ui/.github/workflows/ci-code-review.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

2023-01-25 15:05:57 -08:00
name: Code Review
2022-10-10 11:51:21 -07:00
on:
pull_request:
branches: ['main']
2022-10-10 11:51:21 -07:00
push:
jobs:
2023-01-25 15:05:57 -08:00
semgrep:
name: Code Scan
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
steps:
- name: Checkout code
uses: actions/checkout@v3
- run: semgrep ci --exclude 'public/charting_library'
env:
SEMGREP_RULES: p/typescript
sca:
2022-10-10 11:51:21 -07:00
name: Dependency Scan
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
# Report all vulnerabilities in CI output
- name: Report on all vulnerabilities
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
hide-progress: true
format: 'table'
# Fail the job on critical vulnerabiliies with fix available
- name: Fail on critical vulnerabilities
2022-10-10 11:51:21 -07:00
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
hide-progress: true
security-checks: 'vuln' # disable secrets scanning until public
2022-10-10 11:51:21 -07:00
format: 'table'
severity: 'CRITICAL'
2023-01-25 15:05:57 -08:00
exit-code: '1'