task(I1): CI performance gate (10k interaction budget), typecheck steps for both suites

This commit is contained in:
Agent Zero
2026-08-29 03:37:49 +02:00
parent 8845afbf6f
commit c6fd8ea445
2 changed files with 96 additions and 0 deletions
+6
View File
@@ -15,6 +15,9 @@ jobs:
- name: Install backend dependencies
working-directory: backend
run: npm ci --legacy-peer-deps || npm install --legacy-peer-deps
- name: Typecheck backend
working-directory: backend
run: npx tsc --noEmit
- name: Run backend tests
working-directory: backend
run: npm test
@@ -30,6 +33,9 @@ jobs:
- name: Install frontend dependencies
working-directory: frontend
run: npm ci --legacy-peer-deps || npm install --legacy-peer-deps
- name: Typecheck frontend
working-directory: frontend
run: npx tsc --noEmit
- name: Run frontend tests
working-directory: frontend
run: npm test