fix: CI 修复 tsc 项目引用 + ESLint 限制扫描范围 + 新增 .eslintignore

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-29 16:53:52 +08:00
parent 44a4a4ccf3
commit 44cd6c6595
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -25,10 +25,10 @@ jobs:
- run: npm ci
- name: TypeScript 类型检查
run: npx tsc --noEmit
run: npx tsc -b --noEmit
- name: ESLint
run: npm run lint
run: npx eslint src/ tests/
- name: Vitest 测试
run: npm test