mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-22 08:55:48 +00:00
7 lines
267 B
Bash
7 lines
267 B
Bash
#!/bin/sh
|
|
# Filesystem vulnerability scan for Node (lockfiles, manifests). Replaces pnpm audit
|
|
# while the npm registry legacy audit endpoints are unavailable to pnpm (HTTP 410).
|
|
set -eu
|
|
|
|
exec trivy fs --exit-code 1 --severity HIGH,CRITICAL --skip-dirs .pnpm-store .
|