Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
added full-audit
Browse files Browse the repository at this point in the history
  • Loading branch information
UM100080 authored and UM100080 committed Oct 25, 2023
1 parent 82fc11d commit 9de9488
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ jobs:
npm audit --json > audit.json || true
if [ -s audit.json ]; then
echo 'NPM audit vulnerabilities found:'
cat audit.json
npm audit --registry=https://registry.npmjs.org --json > audit-full.json
cat audit-full.json # Display the contents of audit-full.json
else
echo 'No NPM audit vulnerabilities found.'
fi
release-and-deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 9de9488

Please sign in to comment.