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
+6
View File
@@ -0,0 +1,6 @@
node_modules/
dist/
target/
test-results/
e2e/
*.config.*
+2 -2
View File
@@ -25,10 +25,10 @@ jobs:
- run: npm ci - run: npm ci
- name: TypeScript 类型检查 - name: TypeScript 类型检查
run: npx tsc --noEmit run: npx tsc -b --noEmit
- name: ESLint - name: ESLint
run: npm run lint run: npx eslint src/ tests/
- name: Vitest 测试 - name: Vitest 测试
run: npm test run: npm test