Skip to content
Merged
Changes from 1 commit
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
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ jobs:
distribution: 'temurin'
java-version: ${{matrix.jdk}}
cache: 'gradle'
- name: install node for cda-gui audit
uses: actions/setup-node@v4
with:
node-version: '20'
Comment thread
krowvin marked this conversation as resolved.
Outdated
cache: 'npm'
cache-dependency-path: cda-gui/package-lock.json

- name: run cda-gui audit for high CVE
working-directory: ./cda-gui
run: |
npm install --package-lock-only
npm audit --audit-level=high
- name: build and test
id: thebuild
run: ./gradlew build --info --init-script init.gradle
Expand Down
Loading