Skip to content
Closed
Show file tree
Hide file tree
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
18 changes: 17 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
libayatana-appindicator3-dev \
librsvg2-dev \
patchelf
- run: cargo clippy --workspace -- -D warnings
- run: cargo clippy --workspace --all-targets -- -D warnings

fmt:
name: Format
Expand All @@ -106,6 +106,22 @@ jobs:
run: cargo install cargo-audit --locked
- run: cargo audit

# ── WhatsApp gateway Node dependency audit ────────────────────────────────
gateway-audit:
name: Gateway npm audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies (frozen lockfile)
working-directory: packages/whatsapp-gateway
run: npm ci
- name: Audit for high/critical vulnerabilities
working-directory: packages/whatsapp-gateway
run: npm audit --audit-level=high

# ── Secrets scanning (prevent accidental credential commits) ──────────────
secrets:
name: Secrets Scan
Expand Down
34 changes: 17 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

| Version | Supported |
|---------|--------------------|
| 0.3.x | :white_check_mark: |
| 0.6.x | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
Loading