chore(release-notes): sync docs release notes #11
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: Docs CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: | |
| - main | |
| jobs: | |
| build_and_verify: | |
| runs-on: ubuntu-latest | |
| name: Build and Verify Docs | |
| permissions: | |
| contents: read | |
| env: | |
| NODE_VERSION: "22" | |
| DOCS_LINK_CHECK_CACHE_DIR: .tmp/link-check-cache | |
| DOCS_LINK_CHECK_CACHE_SCOPE: ${{ github.head_ref || github.ref_name }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install playwright browsers | |
| run: npx playwright install --with-deps | |
| - name: Restore docs link-check cache | |
| id: docs-link-check-cache-restore | |
| uses: actions/cache/restore@v4 | |
| with: | |
| path: ${{ env.DOCS_LINK_CHECK_CACHE_DIR }} | |
| key: docs-link-check-${{ runner.os }}-${{ env.DOCS_LINK_CHECK_CACHE_SCOPE }}-${{ github.sha }} | |
| restore-keys: | | |
| docs-link-check-${{ runner.os }}-${{ env.DOCS_LINK_CHECK_CACHE_SCOPE }}- | |
| - name: Build docs | |
| run: NODE_ENV=production npm run build | |
| env: | |
| CLARITY_PROJECT_ID: ${{ secrets.CLARITY_PROJECT_ID }} | |
| - name: Save docs link-check cache | |
| if: always() | |
| uses: actions/cache/save@v4 | |
| with: | |
| path: ${{ env.DOCS_LINK_CHECK_CACHE_DIR }} | |
| key: docs-link-check-${{ runner.os }}-${{ env.DOCS_LINK_CHECK_CACHE_SCOPE }}-${{ github.sha }} | |
| - name: Verify blog sidebar i18n and ad visibility | |
| run: npm run verify:blog-sidebar-i18n |