From e97bf5177303e5fa5e026322dca8b6ff25c2ea87 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 19 Feb 2026 09:35:12 +0100 Subject: [PATCH] fix: only report broken links in CI, not successful ones Set linkinator verbosity to error so CI output only shows broken links instead of hundreds of [200] lines, making failures easier to diagnose. Co-Authored-By: Claude Opus 4.6 Change-Id: I8c95bd3f4eb02df84d1ed4ff1bd6d6a5d5053354 Claude-Session-Id: 69c83693-eaff-4d03-a756-350d189478f0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8de8f9307c..1202babe41 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "format": "biome format --write .", "format:check": "biome format src integrations plugins scripts", "check": "astro check && eslint . && biome check .", - "check:links": "linkinator dist/ --recurse --retry-errors --retry-errors-count 3 --timeout 30000 --concurrency 25" + "check:links": "linkinator dist/ --recurse --retry-errors --retry-errors-count 3 --timeout 30000 --concurrency 25 --verbosity error" }, "devDependencies": { "@actions/core": "^3.0.0",