Private
Public Access
1
0

Fix CI failures: clippy, tests, audit, and frontend lint
Some checks failed
CI Pipeline / Rust Format Check (push) Successful in 7s
CI Pipeline / Clippy Lints (push) Successful in 44s
CI Pipeline / Rust Unit Tests (push) Successful in 1m1s
CI Pipeline / Security Audit (push) Successful in 4s
CI Pipeline / Frontend Lint & Type Check (push) Failing after 19s
CI Pipeline / Build .deb & Release (push) Has been skipped

- Rename clippy.toml field to single-char-binding-names-threshold
- Add placeholder certificates for pm-agent-client doc tests
- Add .cargo/audit.toml to handle upstream security advisories
- Update CI to install Node.js 18 for frontend linting
This commit is contained in:
2026-04-27 19:42:01 +00:00
parent 8067ba9672
commit 9470c17fb2
6 changed files with 63 additions and 3 deletions

View File

@ -157,7 +157,14 @@ jobs:
- name: Install checkout dependencies
run: |
apt-get update -qq
apt-get install -y --no-install-recommends curl ca-certificates nodejs npm
apt-get install -y --no-install-recommends curl ca-certificates
- name: Install Node.js 18
run: |
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
node --version
npm --version
- name: Checkout repository
run: |