Skip to content

docs: adversarial codebase audit (2026-07-03) #151

docs: adversarial codebase audit (2026-07-03)

docs: adversarial codebase audit (2026-07-03) #151

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm tsc
- run: pnpm lint
- run: pnpm test
# Build the renderer so a broken import/asset fails CI instead of shipping to a release tag
# (F37). electron-builder is skipped here — it only runs in the release workflow.
- run: pnpm exec vite build
- run: pnpm audit --audit-level=high --prod