From a43d7b161f454c21ef1dcc3959b15b1f4d42eebd Mon Sep 17 00:00:00 2001 From: Matt Cowley Date: Tue, 22 Jul 2025 16:06:04 +0100 Subject: [PATCH 1/2] ci: disable is-crawlable audit in Lighthouse Signed-off-by: Matt Cowley --- .lighthouserc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.lighthouserc.json b/.lighthouserc.json index eb1c22031ae30..67d7eb2da9eb4 100644 --- a/.lighthouserc.json +++ b/.lighthouserc.json @@ -11,7 +11,8 @@ "categories:performance": ["warn", { "minScore": 0.9 }], "categories:accessibility": ["warn", { "minScore": 0.9 }], "categories:best-practices": ["warn", { "minScore": 0.9 }], - "categories:seo": ["warn", { "minScore": 0.9 }] + "categories:seo": ["warn", { "minScore": 0.9 }], + "is-crawlable": "off" } } } From 8eab85e98b1a2961520f488326f242e07ca58933 Mon Sep 17 00:00:00 2001 From: Matt Cowley Date: Tue, 22 Jul 2025 16:14:15 +0100 Subject: [PATCH 2/2] Move is-crawlable to skipAudits Signed-off-by: Matt Cowley --- .lighthouserc.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.lighthouserc.json b/.lighthouserc.json index 67d7eb2da9eb4..be61cf8385d95 100644 --- a/.lighthouserc.json +++ b/.lighthouserc.json @@ -3,7 +3,8 @@ "collect": { "numberOfRuns": 1, "settings": { - "preset": "desktop" + "preset": "desktop", + "skipAudits": ["is-crawlable"] } }, "assert": { @@ -11,8 +12,7 @@ "categories:performance": ["warn", { "minScore": 0.9 }], "categories:accessibility": ["warn", { "minScore": 0.9 }], "categories:best-practices": ["warn", { "minScore": 0.9 }], - "categories:seo": ["warn", { "minScore": 0.9 }], - "is-crawlable": "off" + "categories:seo": ["warn", { "minScore": 0.9 }] } } }