Skip to content

Link Check

Link Check #13

Workflow file for this run

name: Link Check
on:
schedule:
- cron: '0 9 * * 1'
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check links
uses: lycheeverse/lychee-action@v2
with:
args: >-
--accept 200,204,301,302,403,429
--timeout 30
'**/*.md'
fail: true