From d63fe7023f8cf845b4ef6c8368602170b938297c Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 20 Mar 2026 10:13:10 +0100 Subject: [PATCH] lighthouserc: only disable scaffolder pages in accessibility checks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Revert the over-aggressive commenting-out of all Lighthouse CI URLs. Only the scaffolder pages need to be disabled due to the SubPageBlueprint page layout switch — the other pages were unaffected by this change. Signed-off-by: Patrik Oldsberg Made-with: Cursor --- lighthouserc.js | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/lighthouserc.js b/lighthouserc.js index e9951586d9..fc00cd2b9d 100644 --- a/lighthouserc.js +++ b/lighthouserc.js @@ -18,14 +18,12 @@ module.exports = { collect: { url: [ /** Software Catalog */ - // TODO(Rugvip): Figure out why these don't work after the BUI header switch - // 'http://localhost:3000/catalog', - // 'http://localhost:3000/catalog-import', - // 'http://localhost:3000/catalog/default/component/backstage', + 'http://localhost:3000/catalog', + 'http://localhost:3000/catalog-import', + 'http://localhost:3000/catalog/default/component/backstage', /** TechDocs */ - // TODO(Rugvip): Figure out why these don't work after the BUI header switch - // 'http://localhost:3000/docs', - // 'http://localhost:3000/docs/default/component/backstage', + 'http://localhost:3000/docs', + 'http://localhost:3000/docs/default/component/backstage', /** Software Templates */ // TODO(Rugvip): Figure out why these don't work after the BUI header switch // 'http://localhost:3000/create', @@ -35,8 +33,7 @@ module.exports = { // 'http://localhost:3000/create/templating-extensions', // 'http://localhost:3000/create/templates/default/react-ssr-template', /** Search */ - // TODO(Rugvip): Figure out why these don't work after the BUI header switch - // 'http://localhost:3000/search', + 'http://localhost:3000/search', /** Miscellaneous */ // TODO(Rugvip): Figure out why these don't work after the BUI header switch // 'http://localhost:3000/settings/general', @@ -44,13 +41,11 @@ module.exports = { // 'http://localhost:3000/devtools/info', // 'http://localhost:3000/devtools/config', /** plugin-explore */ - // TODO(Rugvip): Figure out why these don't work after the BUI header switch - // 'http://localhost:3000/explore', - // 'http://localhost:3000/explore/groups', - // 'http://localhost:3000/explore/tools', + 'http://localhost:3000/explore', + 'http://localhost:3000/explore/groups', + 'http://localhost:3000/explore/tools', /** plugin-tech-radar */ - // TODO(Rugvip): Figure out why these don't work after the BUI header switch - // 'http://localhost:3000/tech-radar', + 'http://localhost:3000/tech-radar', ], settings: { onlyCategories: ['accessibility'],