Skip to content

Check Links

Check Links #90

Workflow file for this run

name: 'Check Links'
on:
schedule:
# Run weekly on Sundays at 00:00 UTC
- cron: '0 0 * * 0'
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Check links in Markdown files
uses: lycheeverse/lychee-action@v2
with:
args: --verbose --no-progress '**/*.md' 'apps/site/content/**/*.mdx'
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}