Files
paper-burner-x/.github/workflows
wing 97bb3d33c3 fix(ci): 移除未安装的 jest-junit reporter
问题:
- CI 测试步骤使用 --reporters=jest-junit
- 但 jest-junit 未在 package.json devDependencies 中
- 导致测试失败:"Could not resolve a module for a custom reporter"

修复:
- 移除 --reporters=jest-junit 参数
- 保留 --ci 参数(启用 CI 优化的测试行为)
- Jest 使用默认 reporter 即可满足 CI 需求

jest-junit 主要用于生成 JUnit XML 报告,对测试通过非必需。
2025-11-06 01:55:52 +08:00
..