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:52 -07:00
parent d80dc4d553
commit 008554cd8d

View File

@ -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