chore(deps): bump docusaurus-plugin-openapi-docs from 4.5.1 to 4.7.1 #951
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, add-actions-workflows] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up mise | |
| uses: jdx/mise-action@v2 | |
| with: | |
| cache: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Check formatting | |
| run: pnpm prettier --check . | |
| - name: Check for incorrect support email | |
| run: | | |
| echo "Checking for usage of support@glean.com..." | |
| if grep -r --exclude-dir=node_modules --exclude-dir=.git --exclude-dir=build --exclude-dir=dist --exclude-dir=.next --exclude="*.lock" --exclude="pnpm-lock.yaml" --exclude="ci.yml" "support@glean.com" .; then | |
| echo "Found usage of incorrect email 'support@glean.com'" | |
| echo "Please replace with the correct support email address" | |
| exit 1 | |
| else | |
| echo "No usage of support@glean.com found" | |
| fi | |
| - name: Check API sidebar completeness | |
| run: pnpm sidebar:check | |
| - name: Build website | |
| run: pnpm build | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} |