This repository was archived by the owner on Mar 25, 2026. It is now read-only.
fix: add skill identifier to PostHog tracking, use person_profiles al… #539
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "*" | |
| jobs: | |
| check_links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check for broken links | |
| run: | | |
| output=$(npx mintlify broken-links) | |
| echo "$output" | |
| if echo "$output" | grep -qi "found.*broken links in"; then | |
| echo "❌ Broken links detected!" | |
| exit 1 | |
| else | |
| echo "✅ No broken links found" | |
| fi |