fix(lhci): correct score thresholds per spec (accessibility 0.9, performance 0.7)

This commit is contained in:
cartsnitch-engineer[bot]
2026-03-31 09:23:25 +00:00
committed by GitHub
parent 038440a319
commit 1af2b623ed
+4 -9
View File
@@ -8,18 +8,13 @@
"assert": { "assert": {
"preset": "lighthouse:no-pwa", "preset": "lighthouse:no-pwa",
"assertions": { "assertions": {
"categories:performance": ["warn", { "minScore": 0.5 }], "categories:performance": ["warn", { "minScore": 0.7 }],
"categories:accessibility": ["error", { "minScore": 0.7 }], "categories:accessibility": ["error", { "minScore": 0.9 }],
"categories:best-practices": ["warn", { "minScore": 0.8 }], "categories:best-practices": ["warn", { "minScore": 0.8 }]
"categories:seo": ["warn", { "minScore": 0.7 }],
"errors-in-console": ["warn"],
"network-dependency-tree-insight": ["warn"],
"robots-txt": ["warn"],
"unused-javascript": ["warn"]
} }
}, },
"upload": { "upload": {
"target": "temporary-public-storage" "target": "temporary-public-storage"
} }
} }
} }