Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
types: [opened, reopened, synchronize]
workflow_dispatch: # Allows manual triggering from the GitHub UI

permissions:
contents: read
pull-requests: write
issues: write

jobs:
link-check:
runs-on: ubuntu-latest
Expand Down
256 changes: 253 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"format:js:check": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"format:mdx": "prettier --write \"**/*.{md,mdx}\"",
"format:mdx:check": "prettier --check \"**/*.{md,mdx}\"",
"links:check": "linkinator ./build --recurse --verbosity error --skip \".*github.*|.*localhost.*\""
"vale:sync": "vale sync",
"vale": "vale docs/",
"vale:check": "vale --minAlertLevel=warning docs/"
Expand Down Expand Up @@ -55,6 +56,7 @@
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.4.0",
"@docusaurus/types": "^3.4.0",
"linkinator": "^7.5.1",
"prettier": "^3.5.3"
},
"browserslist": {
Expand Down
Loading