feat: Migrate documentation from Docusaurus to Mintlify (#211) #494
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: | |
| - master | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| unified: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - run: corepack enable | |
| - name: Install deps | |
| run: yarn --immutable | |
| - name: Build | |
| run: yarn build | |
| - name: Lint | |
| run: yarn run lint | |
| env: | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
| - name: "Unit Tests" | |
| run: "yarn run test:unit" | |
| - name: "Integrations Tests" | |
| run: "yarn run test:integrations" |