Skip to content

docs(generator): fix reference $ref links and opaque Object types #551

docs(generator): fix reference $ref links and opaque Object types

docs(generator): fix reference $ref links and opaque Object types #551

Workflow file for this run

name: Check Links
on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- 'content/**'
- 'README.md'
- 'lychee.toml'
- '.github/workflows/check-links.yml'
jobs:
link-checker:
name: Check Documentation Links
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Check links with lychee
uses: lycheeverse/lychee-action@v2
with:
# Use configuration file for path remapping and settings
args: >-
--config lychee.toml
'content/**/*.md'
'content/**/*.mdx'
'README.md'
# Fail the job if broken links are found
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}