From 26d3ecd06d79db9e16665e4ccb850da3511a12d5 Mon Sep 17 00:00:00 2001 From: Naiyuan Qing <145280634+NevilleQingNY@users.noreply.github.com> Date: Thu, 26 Mar 2026 18:01:24 +0800 Subject: [PATCH] fix(ci): replace turbo commands with direct pnpm calls Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afe63e0e..9ce4d13e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,17 +29,8 @@ jobs: - name: Install dependencies run: pnpm install - - name: Restore Turbo cache - uses: actions/cache@v5 - with: - path: .turbo - key: turbo-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.sha }} - restore-keys: | - turbo-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}- - turbo-${{ runner.os }}- - - name: Build, type check, and test - run: pnpm turbo build typecheck test + run: pnpm build && pnpm typecheck && pnpm test backend: runs-on: ubuntu-latest