From 1da2dcc7d9842e8c7b461f53846c60134ec3ae5f Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sun, 22 Mar 2026 21:12:03 -0700 Subject: [PATCH] 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 --- .gitea/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6d9da14..e77d790 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -25,10 +25,10 @@ jobs: - name: Build @bytelyst/* packages 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 - run: pnpm install --frozen-lockfile + run: HUSKY=0 pnpm install --frozen-lockfile - name: Backend typecheck run: pnpm --filter @notelett/backend run typecheck @@ -51,10 +51,10 @@ jobs: - name: Build @bytelyst/* packages 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 - run: pnpm install --frozen-lockfile + run: HUSKY=0 pnpm install --frozen-lockfile - name: Web typecheck run: pnpm --filter @notelett/web run typecheck @@ -77,10 +77,10 @@ jobs: - name: Build @bytelyst/* packages 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 - run: pnpm install --frozen-lockfile + run: HUSKY=0 pnpm install --frozen-lockfile - name: Mobile typecheck run: pnpm --filter @notelett/mobile run typecheck