From e04543dc8a4a2f25fa74eb2594a736c202a55071 Mon Sep 17 00:00:00 2001 From: Eno Compton Date: Thu, 21 Nov 2024 20:24:59 -0800 Subject: [PATCH] Improve CI build with better link checker (#260) * Fix ci builds * Update ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3da6bd6..b18fe0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: oven-sh/setup-bun@v1 - - name: Check all links - run: bun x markdown-link-check --config=.github/workflows/config.json README.md + - name: Link Checker + id: lychee + uses: lycheeverse/lychee-action@v2 - name: "Check for exactly 200 links" run: | grep "\- \[" README.md | grep -Eo "https?://[^][ ]+" | sed 's/)//' | sort > links-only.txt