update reg site #94
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for broken links | |
on: | |
push: | |
branches: | |
- master | |
- main | |
paths: | |
- "assets/**" | |
- "**.html" | |
- "**.js" | |
- "**.liquid" | |
- "**/*.md" | |
- "**.yml" | |
- "!.github/workflows/axe.yml" | |
- "!.github/workflows/deploy-docker-tag.yml" | |
- "!.github/workflows/deploy-image.yml" | |
- "!.github/workflows/docker-slim.yml" | |
- "!.github/workflows/lighthouse-badger.yml" | |
- "!.github/workflows/prettier.yml" | |
- "!lighthouse_results/**" | |
pull_request: | |
branches: | |
- master | |
- main | |
paths: | |
- "assets/**" | |
- "**.html" | |
- "**.js" | |
- "**.liquid" | |
- "**/*.md" | |
- "**.yml" | |
- "!.github/workflows/axe.yml" | |
- "!.github/workflows/deploy-docker-tag.yml" | |
- "!.github/workflows/deploy-image.yml" | |
- "!.github/workflows/docker-slim.yml" | |
- "!.github/workflows/lighthouse-badger.yml" | |
- "!.github/workflows/prettier.yml" | |
- "!lighthouse_results/**" | |
jobs: | |
link-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Link Checker 🔗 | |
uses: lycheeverse/[email protected] | |
with: | |
fail: true | |
# removed md files that include liquid tags | |
args: --exclude-path README.md --exclude file:\/\/\/home\/runner* --insecure --timeout 60 --max-retries 2 --accept '100..=103, 200..=299, 403, 429, 999' --exclude-path _pages/404.md --no-progress './**/*.md' './**/*.html' |