mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-27 09:28:43 +07:00
21 lines
516 B
YAML
21 lines
516 B
YAML
name: Lychee external linkcheck
|
|
on:
|
|
schedule:
|
|
- cron: "18 7 * * 1"
|
|
workflow_dispatch:
|
|
jobs:
|
|
link-check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Run Lychee Link Checker
|
|
uses: lycheeverse/lychee-action@f796c8b7d468feb9b8c0a46da3fac0af6874d374
|
|
with:
|
|
args: --config lychee.toml ./docs
|
|
|
|
- name: Report Status
|
|
if: failure()
|
|
run: echo "❌ Broken links detected. Please fix them!"
|