From 645b584a9a52a29781aaafe7a1e63da10348c915 Mon Sep 17 00:00:00 2001 From: Ashley Dumaine <5779804+AshleyDumaine@users.noreply.github.com> Date: Fri, 5 Apr 2024 09:32:48 -0400 Subject: [PATCH] check for broken links (#237) --- .github/workflows/gh-pages.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 7e656480b..30e78b016 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -38,6 +38,12 @@ jobs: uses: actions/upload-pages-artifact@v3 with: path: 'docs/book' + - name: Check broken links + uses: ruzickap/action-my-broken-link-checker@v2 + with: + url: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }} + pages_path: docs/book + cmd_params: '--buffer-size=8192 --max-connections=10 --color=always --skip-tls-verification --header="User-Agent:curl/7.54.0" --timeout=20' deploy-page: needs: generate-docs