This repository was archived by the owner on Apr 29, 2026. It is now read-only.
Add versioned docs structure for v0.12 and v0.14 #81
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
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| vale: | |
| name: vale | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| - run: npm install -g mdx2vast | |
| - uses: errata-ai/vale-action@v2.1.1 | |
| with: | |
| fail_on_error: true | |
| vale_flags: "--minAlertLevel=error" | |
| internal-links: | |
| name: internal-links | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| - run: npm install -g mintlify | |
| - run: mintlify broken-links | |
| lychee: | |
| name: lychee | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Restore lychee cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: .lycheecache | |
| key: cache-lychee-${{ github.sha }} | |
| restore-keys: cache-lychee- | |
| - uses: lycheeverse/lychee-action@v2 | |
| with: | |
| fail: true |