613d496133
* Add Lychee linkchecker for inter-doc links * Fix path to linkcheckr CI * Try fix path again * Update lychee config * Fix broken links * Add Lychee usage info to readme
22 lines
539 B
YAML
22 lines
539 B
YAML
name: ci-docs-linkcheck
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- "documentation/docs/**"
|
|
- ".github/workflows/ci-docs-linkcheck.yml"
|
|
- "lychee.toml"
|
|
|
|
jobs:
|
|
linkcheck:
|
|
runs-on: arc-linux-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Check links
|
|
uses: lycheeverse/lychee-action@v2
|
|
with:
|
|
args: ${{ github.workspace }}/documentation/docs/ --config ${{ github.workspace }}/lychee.toml --root-dir ${{ github.workspace }}/documentation/docs/pages/
|
|
fail: true
|