Skip to content

Wording

Wording #178

Workflow file for this run

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/lychee-action@v2.1.0
with:
fail: true
# removed md files that include liquid tags
args: >
--user-agent 'curl/7.54'
--exclude-path README.md
--exclude-path _pages/404.md
--exclude-path _pages/blog.md
--exclude-path _pages/about.md
--exclude-path _posts/2024-12-13-hardcore-fan.md
--exclude-path _posts/2018-12-22-distill.md
--exclude-path _posts/2023-04-24-videos.md
--exclude-path _posts/2023-05-12-progress-of-chinese-app-app-at-ut.md
--exclude-path _posts/2024-12-11-power-systems-wiki.md
--exclude-path _posts/2025-01-19-on-data-center-power-systems-update.md
--exclude-path _posts/2023-02-01-helpful-resources-for-phd-students.md
--exclude-path _posts/2024-02-14-the-arts-i-love.md
--exclude-path _posts/2024-10-12-the-3-most-ommon-causes-of-insecurity-and-how-to-beat-them.md
--exclude-path _posts/2024-10-13-8-sneaky-signs-that-insecurity-is-affecting-your-life-and-5-ways-to-gain-more-confidence.md
--exclude-path _posts/2024-10-14-4-things-to-do-when-youre-burning-out-at-work.md
--exclude-path _posts/2024-10-14-are-you-burned-out-or-just-exhausted.md
--exclude-path _posts/2024-10-14-basic-and-complex-emotions.md
--exclude-path _posts/2024-10-14-what-are-basic-emotions.md
--exclude-path _posts/2024-10-15-laws-of-emotional-mastery.md
--exclude-path INSTALL.md
--verbose
--no-progress
'./**/*.md'
'./**/*.html'