fix(seo): noindex auth and docs crawl #13082
Workflow file for this run
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| merge_group: | |
| branches: | |
| - main | |
| jobs: | |
| quality: | |
| if: github.event_name == 'pull_request' && github.head_ref != 'main' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7.0.0 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - name: Ensure at most one new migration | |
| run: bash scripts/check-new-migrations.sh "${{ github.event.pull_request.base.sha }}" "${{ github.event.pull_request.head.sha }}" | |
| lint: | |
| uses: ./.github/workflows/run.yml | |
| secrets: inherit | |
| with: | |
| cmd: pnpm build && pnpm lint | |
| generate: | |
| uses: ./.github/workflows/run.yml | |
| secrets: inherit | |
| with: | |
| cmd: pnpm build && git diff --exit-code | |
| build: | |
| uses: ./.github/workflows/run.yml | |
| secrets: inherit | |
| with: | |
| cmd: pnpm build && pnpm run setup && bash .github/start.sh | |
| test: | |
| uses: ./.github/workflows/run.yml | |
| secrets: inherit | |
| with: | |
| cmd: pnpm build && pnpm run setup && pnpm test:unit |