Enforce strict UI audit in verify

This commit is contained in:
root 2026-05-09 01:11:30 +00:00
parent 0b2783813b
commit c6a05d54d9
2 changed files with 3 additions and 2 deletions

View File

@ -28,14 +28,14 @@ cp .env.example .env # root — used by Docker Compose and CI
cp backend/.env.example backend/.env # backend — fill in Cosmos, exchange, and AI credentials
cp web/.env.example web/.env.local # web — Vite build-time API URLs
cp mobile/.env.example mobile/.env.local # mobile — Expo build-time API URLs
pnpm verify # typecheck + test + build — must be green before any deploy
pnpm verify # typecheck + test + strict UI audit + build — must be green before any deploy
```
## Common Commands
```bash
# Verification (run before every merge / deploy)
pnpm verify # typecheck + test + build across all surfaces
pnpm verify # typecheck + test + strict UI audit + build across all surfaces
pnpm lint # backend contract + security guards + web/mobile lint
pnpm smoke:release # auth + kill-switch smoke tests

View File

@ -4,5 +4,6 @@ set -eu
echo "Running root verification for learning_ai_invt_trdg"
pnpm typecheck
pnpm test
pnpm audit:ui:strict
pnpm build