From 3b9e2a39a8bc30c7149a03c428474b0f4f2dc0ae Mon Sep 17 00:00:00 2001 From: Suleiman Shahbari Date: Thu, 25 Jun 2026 19:45:00 +0300 Subject: [PATCH] ci: scope to build-only until Phase 2 decouples the test suite typecheck/test pull broader @rudderjs/* packages via the .test.ts files and can't pass standalone yet (see #3). build excludes tests and is the meaningful gate for now. --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a32f3e8..c585da2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,5 +17,7 @@ jobs: cache: pnpm - run: pnpm install --frozen-lockfile - run: pnpm build - - run: pnpm typecheck - - run: pnpm test + # TODO(#3): re-enable typecheck + test once @gemstack/ai-sdk is decoupled + # from @rudderjs/core/orm. Today the .test.ts files import broader + # @rudderjs/* packages that aren't dependencies here, so neither passes + # standalone. build (which excludes tests) is the meaningful gate for now.