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
This commit is contained in:
saravanakumardb1 2026-03-22 20:33:50 -07:00
parent 41b7760ebf
commit 7242c83998

View File

@ -26,7 +26,7 @@ jobs:
- name: Build @bytelyst/* packages - name: Build @bytelyst/* packages
working-directory: /Users/sd9235/code/mygh/learning_ai_common_plat 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 - name: Install workspace dependencies
run: pnpm install run: pnpm install
@ -49,7 +49,7 @@ jobs:
- name: Build @bytelyst/* packages - name: Build @bytelyst/* packages
working-directory: /Users/sd9235/code/mygh/learning_ai_common_plat 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 - name: Install workspace dependencies
run: pnpm install run: pnpm install