Skip to content

more more more more more fixes #50

more more more more more fixes

more more more more more fixes #50

Workflow file for this run

# Design 10.6, 10.30: Doc link checker - fail CI on broken links
name: Docs Check
on:
push:
branches: ['main', 'main_deprecated', 'feature']
paths: ['docs/**', '.github/**', '.lycheeignore']
pull_request:
branches: ['main', 'main_deprecated', 'feature']
paths: ['docs/**', '.github/**', '.lycheeignore']
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lychee link check
uses: lycheeverse/lychee-action@v2
with:
args: 'docs/ .github/ --no-progress --root-dir ${{ github.workspace }} --exclude-path "docs/feature/beatport-docs-export"'
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}