fix(ci): skip common-plat install + add HUSKY=0

- Remove pnpm install from common-plat build step (deps already local)
- Add HUSKY=0 to prevent husky install failure in CI
This commit is contained in:
saravanakumardb1 2026-03-22 21:12:03 -07:00
parent cbbd9ddce9
commit 1da2dcc7d9

View File

@ -25,10 +25,10 @@ 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 -r --filter './packages/**' build run: pnpm -r --filter './packages/**' build
- name: Install workspace dependencies - name: Install workspace dependencies
run: pnpm install --frozen-lockfile run: HUSKY=0 pnpm install --frozen-lockfile
- name: Backend typecheck - name: Backend typecheck
run: pnpm --filter @notelett/backend run typecheck run: pnpm --filter @notelett/backend run typecheck
@ -51,10 +51,10 @@ 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 -r --filter './packages/**' build run: pnpm -r --filter './packages/**' build
- name: Install workspace dependencies - name: Install workspace dependencies
run: pnpm install --frozen-lockfile run: HUSKY=0 pnpm install --frozen-lockfile
- name: Web typecheck - name: Web typecheck
run: pnpm --filter @notelett/web run typecheck run: pnpm --filter @notelett/web run typecheck
@ -77,10 +77,10 @@ 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 -r --filter './packages/**' build run: pnpm -r --filter './packages/**' build
- name: Install workspace dependencies - name: Install workspace dependencies
run: pnpm install --frozen-lockfile run: HUSKY=0 pnpm install --frozen-lockfile
- name: Mobile typecheck - name: Mobile typecheck
run: pnpm --filter @notelett/mobile run typecheck run: pnpm --filter @notelett/mobile run typecheck