From 1bf267069165f4403ee8d04b0bd532b652b3bb58 Mon Sep 17 00:00:00 2001 From: Knox Lively Date: Mon, 26 Feb 2024 11:11:49 -0700 Subject: [PATCH] Create link-checker.yml Added link checker to check links upon commits/pr's...hold on to your butts --- .github/workflows/link-checker.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/link-checker.yml diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml new file mode 100644 index 0000000..cfa9700 --- /dev/null +++ b/.github/workflows/link-checker.yml @@ -0,0 +1,17 @@ +name: Links (Fail Fast) + +on: + push: + pull_request: + +jobs: + linkChecker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Link Checker + uses: lycheeverse/lychee-action@v1 + with: + fail: true + args: --base . --verbose --no-progress './**/*.md' './**/*.mdx' './**/*.html' './**/*.rst'