chore: add patch changeset for domain link updates #6
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: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Type check | |
| run: pnpm type-check | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Build package | |
| run: pnpm build | |
| - name: Build registry assets | |
| run: pnpm registry:build | |
| - name: Verify registry assets | |
| run: pnpm registry:verify | |
| - name: Build docs app | |
| run: pnpm -C apps/www build | |
| - name: Verification suite (without visual baseline) | |
| run: pnpm verify | |
| env: | |
| SKIP_VISUAL: "1" |