Thanks to visit codestin.com
Credit goes to github.com

Skip to content

docs: add 3.10.0 changelog #162

docs: add 3.10.0 changelog

docs: add 3.10.0 changelog #162

Workflow file for this run

name: Check Broken Links in MDX Files
on:
pull_request:
paths:
- 'mintlify/**/*.mdx'
- '.github/workflows/broken-links.yml'
- 'mintlify/check-links.sh'
permissions:
contents: read
jobs:
check-broken-links:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Mintlify CLI
run: npm install -g mintlify
- name: Run broken links check
run: |
echo "## 🔍 Checking for broken links (excluding /api-reference)..."
echo ""
# Run the check script
./mintlify/check-links.sh
echo ""
echo "> **Note**: Links to \`/api-reference/\` are automatically excluded from this check."