From e2bc2bf465dc56d09946896af4c596a5faad0238 Mon Sep 17 00:00:00 2001 From: Ilias Trichopoulos Date: Mon, 26 Jan 2026 10:29:19 +0100 Subject: [PATCH] Disable link checker See https://github.com/alephium/docs/issues/593 --- .github/workflows/test.yaml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8ff663d8..813499c9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -19,10 +19,12 @@ jobs: # The build script checks for dead links run: npm ci && npm run build - - name: Link Checker - id: lychee - uses: lycheeverse/lychee-action@v2 - with: - fail: true - args: --base-url https://docs.alephium.org --exclude-all-private --exclude '^file:' --accept '100..=103,200..=299,403,429' './**/*.html' - workingDirectory: build + # TODO: Re-enable link checker when we find the bandwidth to fix broken links and disable false-positives + # See: https://github.com/alephium/docs/issues/593 + # - name: Link Checker + # id: lychee + # uses: lycheeverse/lychee-action@v2 + # with: + # fail: true + # args: --base-url https://docs.alephium.org --exclude-all-private --exclude '^file:' --accept '100..=103,200..=299,403,429' './**/*.html' + # workingDirectory: build