fix(ci): incorrect node version, missing turbo cache, build cmd

This commit is contained in:
Neko Ayaka
2025-11-25 23:45:22 +08:00
parent bf8267be15
commit e3eab12488
+10 -2
View File
@@ -41,13 +41,21 @@ jobs:
steps:
- uses: actions/checkout@v6
# Turborepo
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: pnpm
node-version: latest
registry-url: https://registry.npmjs.org
- run: pnpm install --frozen-lockfile
- run: pnpm run build:packages
- run: ${{ matrix.command }}
- uses: cloudflare/wrangler-action@v3
with: