fix(ci): replace turbo commands with direct pnpm calls

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Naiyuan Qing 2026-03-26 18:01:24 +08:00
parent a882df14b4
commit 26d3ecd06d

View file

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