Add rate limits initial documentation #3494
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: Mintlify validate | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: mintlify-validate-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| mintlify-validate: | |
| name: mintlify validate | |
| runs-on: canton-network-cf-docs | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up Nix | |
| uses: cachix/install-nix-action@v31 | |
| - name: Validate external snippet wrapper | |
| run: nix-shell --run 'npm run test:external-snippets' | |
| - name: Run Mintlify validation | |
| run: nix-shell --run 'cd docs-main && npx mint validate' |