From d9cadbaa15ecae3dd1be247619dd643549769f2d Mon Sep 17 00:00:00 2001 From: Prateek Date: Fri, 13 Feb 2026 18:37:26 +0530 Subject: [PATCH] =?UTF-8?q?fix:=20remove=20||=20true=20from=20web=20build?= =?UTF-8?q?=20=E2=80=94=20bugbot=20caught=20it,=20web=20errors=20should=20?= =?UTF-8?q?fail=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d435e0ac9..7932dccad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,12 +35,12 @@ jobs: node-version: 20 cache: pnpm - run: pnpm install --frozen-lockfile - # Build non-web packages first (web needs next build which has special handling) + # Build all non-web packages - run: pnpm -r --filter '!@agent-orchestrator/web' build - # Build web separately — Next.js modifies tsconfig and generates types - - run: pnpm --filter @agent-orchestrator/web build || true - # Typecheck non-web packages (web is typechecked by next build above) + # Typecheck all non-web packages - run: pnpm -r --filter '!@agent-orchestrator/web' typecheck + # Build web (Next.js build includes its own typecheck) + - run: pnpm --filter @agent-orchestrator/web build test: name: Test