diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..a25faf3 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,6 @@ +node_modules/ +dist/ +target/ +test-results/ +e2e/ +*.config.* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c90e281..302a499 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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