From 7b28913765cf522045607ef0a2d7f3a64c618106 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=7BAI=7Df=20D=2E=20M=C3=BCller?= Date: Mon, 13 Apr 2026 23:17:12 +0200 Subject: [PATCH] fix: Lighthouse CI tests canonical upstream URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Lighthouse CI job in test.yml has been failing on every merge to main since at least 2026-04-06 (10 consecutive failures) because .lighthouserc.json tests https://raifdmueller.github.io/Semantic-Anchors/ — the fork URL, which is a leftover from when development happened in the fork before the move to upstream. The fork GH Pages site hasn't been redeployed since 2026-03-27 (confirmed via HTTP last-modified headers), so Lighthouse is testing an outdated snapshot that doesn't reflect anything recent. Point the test at https://llm-coding.github.io/Semantic-Anchors/ — the canonical deployed URL that deploy.yml actually publishes to. Co-Authored-By: Claude Opus 4.6 (1M context) --- website/.lighthouserc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/.lighthouserc.json b/website/.lighthouserc.json index 6ebc01b2..91a98c43 100644 --- a/website/.lighthouserc.json +++ b/website/.lighthouserc.json @@ -1,7 +1,7 @@ { "ci": { "collect": { - "url": ["https://raifdmueller.github.io/Semantic-Anchors/"], + "url": ["https://llm-coding.github.io/Semantic-Anchors/"], "numberOfRuns": 3, "settings": { "preset": "desktop"