Build the agent-native compute CRM platform
CI / verify (push) Successful in 3m6s

This commit is contained in:
2026-08-13 01:39:01 -07:00
parent bfd2f8d95a
commit 853bde2265
160 changed files with 61812 additions and 483 deletions
+4 -7
View File
@@ -94,13 +94,7 @@ jobs:
run: npm install --no-audit --no-fund
- name: Typecheck every package
run: |
npx tsc --noEmit -p packages/core/tsconfig.json
npx tsc --noEmit -p packages/db/tsconfig.json
npx tsc --noEmit -p packages/prime/tsconfig.json
npx tsc --noEmit -p apps/api/tsconfig.json
npx tsc --noEmit -p apps/web/tsconfig.json
npx tsc --noEmit -p apps/mcp/tsconfig.json
run: npm run typecheck
- name: Unit tests
run: npm test --workspaces --if-present
@@ -123,6 +117,9 @@ jobs:
echo "contacts: $BEFORE -> $AFTER"
test "$BEFORE" = "$AFTER" || { echo "SEED IS NOT IDEMPOTENT"; exit 1; }
- name: Critical path E2E against Postgres and Hono
run: npm run test:e2e
- name: Server boots and answers
run: |
NODE_ENV=development PIG_PORT=8930 npx tsx apps/api/src/server.ts &