feat(ci): add automated Lighthouse audit pipeline

This commit is contained in:
2026-01-12 17:32:55 +01:00
parent ee13b191c3
commit 2faa41cf10
8 changed files with 106 additions and 18 deletions

23
.lighthouserc.cjs Normal file
View File

@@ -0,0 +1,23 @@
module.exports = {
ci: {
collect: {
staticDistDir: '/app/dist',
settings: {
chromeFlags: '--no-sandbox --disable-setuid-sandbox --headless=new --disable-gpu --disable-dev-shm-usage',
},
numberOfRuns: 1
},
assert: {
assertions: {
'categories:performance': ['error', {minScore: 0.9}],
'categories:accessibility': ['error', {minScore: 0.9}],
'categories:best-practices': ['error', {minScore: 0.9}],
'categories:seo': ['error', {minScore: 0.9}],
},
},
upload: {
target: 'filesystem',
outputDir: './.lighthouseci', // C'est ici que Jenkins ira chercher les fichiers
},
},
};