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

71 lines
1.6 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:
2023-01-26 01:57:27 -08:00
pull_request:
branches: ['main']
2022-10-10 11:51:21 -07:00
push:
jobs:
2023-01-26 02:40:20 -08:00
build:
2023-01-26 02:09:47 -08:00
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
2023-01-26 02:40:20 -08:00
node-version: '18'
2023-01-26 02:09:47 -08:00
cache: 'yarn'
2023-01-26 07:30:18 -08:00
- name: Check dep dupes
run: yarn ci-dupe-check
2023-01-26 07:30:54 -08:00
2023-01-26 02:09:47 -08:00
- name: Install dependencies
2023-01-26 02:30:09 -08:00
run: yarn ci
2023-01-26 02:09:47 -08:00
2023-01-26 02:40:20 -08:00
- name: Build
2023-01-26 02:09:47 -08:00
run: yarn build
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:
2023-01-26 01:57:27 -08:00
SEMGREP_RULES: p/typescript
2023-01-25 15:05:57 -08:00
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'
2023-01-26 01:57:27 -08:00
# 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-26 01:57:27 -08:00
exit-code: '1'