From 008554cd8d47b096cee7d5b9afb54a059c7e5307 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sun, 22 Mar 2026 20:33:52 -0700 Subject: [PATCH] fix(ci): build only @bytelyst/* packages in common-plat - Use pnpm -r --filter './packages/**' build to avoid dashboard/service builds - Fixes .next/lock conflict from parallel jobs building common-plat --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ca39279..6d9da14 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Build @bytelyst/* packages working-directory: /Users/sd9235/code/mygh/learning_ai_common_plat - run: pnpm install --frozen-lockfile && pnpm build + run: pnpm install --frozen-lockfile && pnpm -r --filter './packages/**' build - name: Install workspace dependencies run: pnpm install --frozen-lockfile @@ -51,7 +51,7 @@ jobs: - name: Build @bytelyst/* packages working-directory: /Users/sd9235/code/mygh/learning_ai_common_plat - run: pnpm install --frozen-lockfile && pnpm build + run: pnpm install --frozen-lockfile && pnpm -r --filter './packages/**' build - name: Install workspace dependencies run: pnpm install --frozen-lockfile @@ -77,7 +77,7 @@ jobs: - name: Build @bytelyst/* packages working-directory: /Users/sd9235/code/mygh/learning_ai_common_plat - run: pnpm install --frozen-lockfile && pnpm build + run: pnpm install --frozen-lockfile && pnpm -r --filter './packages/**' build - name: Install workspace dependencies run: pnpm install --frozen-lockfile