Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ jobs:
semgrep --config semgrep.yaml $(pwd)/portal-ui --error

no-warnings-and-make-assets:
name: "React Code Has No Warnings & is Prettified, then Make Assets"
name: "React Code Has No Vulnerabilities, Warnings & is Prettified, then Make Assets"
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -333,6 +333,11 @@ jobs:
restore-keys: |
${{ runner.os }}-assets-

- name: Checks for known security issues with the installed packages
working-directory: ./portal-ui
continue-on-error: false
run: |
yarn audit
- name: Install Dependencies
working-directory: ./portal-ui
continue-on-error: false
Expand Down