cxs is a local-first CLI for searching Codex session logs. It is designed for progressive retrieval: find the right session first, then read
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(ci): 使用 check 命令运行测试

Entire-Checkpoint: 14bad1bd5f6a

cat 3caab2ce 839f437b

+8 -9
+1 -1
.github/workflows/ci.yml
··· 22 22 run: bun install --frozen-lockfile 23 23 24 24 - name: Run tests 25 - run: bun test 25 + run: bun run check
+2 -2
CONTRIBUTING.md
··· 16 16 运行测试: 17 17 18 18 ```bash 19 - bun test 19 + bun run check 20 20 ``` 21 21 22 22 跑手工评测导出: ··· 43 43 至少运行: 44 44 45 45 ```bash 46 - bun test 46 + bun run check 47 47 ``` 48 48 49 49 如果改动涉及查询、排序、评测语义,建议补一次:
+1 -1
README.md
··· 215 215 运行测试: 216 216 217 217 ```bash 218 - bun test 218 + bun run check 219 219 ``` 220 220 221 221 跑手工评测:
+4 -5
docs/CODE_QUALITY_REVIEW_2026-04-27.md
··· 23 23 验证命令: 24 24 25 25 ```bash 26 - bun test 26 + bun run check 27 27 ``` 28 28 29 29 结果: 30 30 31 31 ```text 32 - 30 pass 32 + 48 pass 33 33 0 fail 34 - 109 expect() calls 35 34 ``` 36 35 37 36 ## 优点 ··· 87 86 88 87 ### P0-1:缺少真正的 TypeScript 类型检查 ✅ 已修复 89 88 90 - > 状态:已在 commit `be75d87 chore: add TypeScript check` 修复(写本报告之后)。`tsconfig.json` 已就绪、`check` 已改为 `tsc --noEmit && bun test`。 89 + > 状态:已在 commit `be75d87 chore: add TypeScript check` 修复(写本报告之后)。`tsconfig.json` 已就绪、`check` 后续已对齐为 `tsc --noEmit && vitest run`。 91 90 92 91 原文(保留作为背景):`package.json` 中 `check` 当前只是 `bun test`,没有 `tsc --noEmit`。Bun 可以执行 TypeScript,但不等于有完整类型检查。 93 92 ··· 101 100 102 101 - `tsconfig.json` 103 102 - `bunx tsc --noEmit` 104 - - 把 `check` 改成 `tsc --noEmit && bun test` 103 + - 把 `check` 改成 `tsc --noEmit && vitest run` 105 104 106 105 ### P0-2:DB 连接在异常路径上可能泄漏 107 106