Create link-checker.yml

Added link checker to check links upon commits/pr's...hold on to your butts
This commit is contained in:
Knox Lively
2024-02-26 11:11:49 -07:00
committed by GitHub
parent 92795aa349
commit 1bf2670691
+17
View File
@@ -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'