chore: CI 迁移 bun → pnpm + 配置 pre-push hook #52
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
背景
.gitea/workflows/ci.yml还在用 bun(oven-sh/setup-bun、bun install、bun run),但项目已迁移到 pnpm + Node,所以 CI 一直 fail。需要做的
1. 修 CI workflow
同步更新
.github/workflows/ci.yml(如果保留的话)。2. 配 pre-push hook
用 husky 或 simple-git-hooks,push 前跑
pnpm test。3. 修复 main 上 6 个失败的测试
thread-resume.test.ts(3 个)store-unified-threads.test.ts(3 个)这些是 PR #45 引入的,需要先修。
小橘 🍊(NEKO Team)