- apps/web/lighthouserc.cjs: desktop preset, 3 runs, P/A/B/S ≥ 90 断言 - apps/web/scripts/lhci-scores.cjs: 本地汇总脚本(median P/A/B/S + ✅/❌ 标记) - .github/workflows/web-ci.yml: 新增 lighthouse job,treosh/lighthouse-ci-action@v12 - apps/web/package.json: +lhci script - apps/web/.gitignore: .lighthouseci/ 加入忽略(避免本地 12 个 run 报告污染 repo) 本地验证(desktop preset, 3 runs × 4 URLs): perf=100 a11y=95-96 best=96 seo=91 (全部 ≥ 90 ✅) G3 闸门状态:typecheck ✅ / lint ✅ / vitest 69 ✅ / e2e 84/84 ✅ / build 87.85KB ✅ / Lighthouse P/A/B/S ✅ / 真实后端 ⏳(T-B-27)/ Poster CLI Docker ⏳(T-C-44)
52 lines
530 B
Plaintext
52 lines
530 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Next.js build output
|
|
.next/
|
|
out/
|
|
dist/
|
|
|
|
# Production build
|
|
build/
|
|
|
|
# Debug logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Local env files
|
|
.env*.local
|
|
.env
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Misc
|
|
*.log
|
|
.vercelignore
|
|
.npm-cache
|
|
.next-dev.pid
|
|
.workbuddy/
|
|
next-dev.log
|
|
|
|
# 测试 / 调试产物(避免误提交本地运行结果)
|
|
playwright-report/
|
|
test-results/
|
|
coverage/
|
|
.turbo/
|
|
.lighthouseci/
|