CRDCDH-554 QC Download metadata validation results #24
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: Certify Changes | |
on: | |
pull_request: | |
branches: "*" | |
paths: | |
- "src/**" | |
- "public/**" | |
- "*.json" | |
- "*.js" | |
- "*.jsx" | |
- "*.ts" | |
- "*.tsx" | |
permissions: | |
contents: read | |
jobs: | |
certify: | |
name: Certify Build Changes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm ci --legacy-peer-deps | |
- name: Run Typecheck | |
run: npm run check:ci | |
- name: Run Jest | |
run: npm run test:ci | |
- name: Run Linter | |
run: npm run lint:ci |