- ci.yml: 3-stage GitHub Actions following code-standards/ci pattern - Lint (3min): biome ci - Test (10min): npm test with c8 coverage + webpack build + artifacts - Security (5min): npm audit (high) + biome lint - Replace auto-build.yml (single-job install+test+build) - Add c8 devDep + test:coverage script (text/lcov/html) - .c8rc.json: include src/ and pro/src/, exclude tests/langs - Track package-lock.json (required by npm ci in CI) - Clean up .gitignore: remove .* allowlist antipattern, list specific ignores
7 lines
167 B
JSON
7 lines
167 B
JSON
{
|
|
"all": true,
|
|
"include": ["src/**/*.ts", "pro/src/**/*.ts"],
|
|
"exclude": ["tests/**", "pro/tests/**", "**/*.d.ts", "**/langs/**"],
|
|
"reports-dir": "coverage"
|
|
}
|