scripts/ci/security.sh
Metadata
- Purpose: Automation script used in local development, CI, or deployment flow.
- Domain:
scripts - Language:
bash - Bytes: 161
- Lines: 9
- Content hash (short):
aad11906 - Source (start): scripts/ci/security.sh:1
- Source (end): scripts/ci/security.sh:9
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
#!/usr/bin/env bash
set -euo pipefail
pnpm audit --audit-level high
if command -v go >/dev/null 2>&1; then
(cd agents/anchor-edge-agent && go test ./...)
fi