Skip to content

Expose triggerHooks method and add unregisterItem method to SchemaReg… #545

Expose triggerHooks method and add unregisterItem method to SchemaReg…

Expose triggerHooks method and add unregisterItem method to SchemaReg… #545

Workflow file for this run

name: Check Links
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
link-checker:
name: Check Documentation Links
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check links with lychee
uses: lycheeverse/lychee-action@v2
with:
# Use configuration file for path remapping and settings
args: >-
--config lychee.toml
--exclude-path '(^|.*/)meta\.json$'
--exclude-path '(^|.*/)meta\.cn\.json$'
'content/**/*.md'
'content/**/*.mdx'
'README.md'
# Fail the job if broken links are found
fail: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}