From c6a05d54d99dc2f43f8145ba07c60523db7550cc Mon Sep 17 00:00:00 2001 From: root Date: Sat, 9 May 2026 01:11:30 +0000 Subject: [PATCH] Enforce strict UI audit in verify --- README.md | 4 ++-- scripts/verify.sh | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b95b39b..5d8e2f2 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/scripts/verify.sh b/scripts/verify.sh index 14ba12c..824b7bf 100755 --- a/scripts/verify.sh +++ b/scripts/verify.sh @@ -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