Skip to content

fix(seo): noindex auth and docs crawl #13082

fix(seo): noindex auth and docs crawl

fix(seo): noindex auth and docs crawl #13082

Workflow file for this run

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