docs(ai-analyst): add architecture diagram to setup page #103
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 Documentation Update | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| - name: Install Mintlify CLI | |
| run: npm install -g mintlify | |
| - name: Validate documentation | |
| run: | | |
| echo "Validating documentation at SHA: ${{ github.sha }}" | |
| mintlify validate || echo "::warning::Mintlify validation had errors (see above). This may be pre-existing MDX issues." | |
| continue-on-error: true |