Remove demo external blog sources and RSS icon (no blog on this site) #6
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 | |
| # only run on the main repo | |
| if: github.repository == 'alshedivat/al-folio' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Link Checker 🔗 | |
| uses: lycheeverse/lychee-action@v2.0.2 | |
| with: | |
| fail: true | |
| # removed md files that include liquid tags | |
| # docs/releases is excluded because release notes link to the compare | |
| # range for the tag they are about to create, which cannot resolve until | |
| # the release is published | |
| args: --user-agent 'curl/7.54' --max-retries 3 --retry-wait-time 2 --exclude-path docs/releases --exclude-path README.md --exclude-path _pages/404.md --exclude-path _pages/blog.md --exclude-path _posts/2018-12-22-distill.md --exclude-path _posts/2023-04-24-videos.md --exclude-path _books/the_godfather.md --exclude-path .github/instructions/bibtex-bibliography.instructions.md --exclude-path .github/instructions/yaml-configuration.instructions.md --exclude-path .github/instructions/markdown-content.instructions.md --exclude-path .github/instructions/liquid-templates.instructions.md --exclude-path AGENTS.md --exclude-path docs/SEO.md --exclude-path docs/SHOWCASE.md --verbose --no-progress './**/*.md' './**/*.html' |