docs(stable-mode): PR C — apps/web/ landing + v0.2.1 doc-bump #173
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| node: | |
| name: node (pnpm / biome / tsc / core-isolation / no-deskduck / generated) | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Biome check | |
| run: pnpm biome check | |
| - name: Typecheck | |
| run: pnpm typecheck | |
| - name: Test | |
| run: pnpm test | |
| - name: Core-isolation rule | |
| run: pnpm check:core-isolation | |
| - name: Anti-DeskDuck | |
| run: pnpm check:no-deskduck | |
| - name: Generated-types drift | |
| run: pnpm check:generated | |
| python: | |
| name: python (uv / ruff / pytest) | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "latest" | |
| enable-cache: true | |
| - name: Setup Python | |
| run: uv python install 3.12 | |
| - name: Sync workspace | |
| run: uv sync --all-packages --frozen | |
| - name: Ruff | |
| run: uv run ruff check | |
| - name: Pytest | |
| run: uv run pytest | |
| go: | |
| name: go (vet / test) | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.25" | |
| cache: false | |
| - name: Vet | |
| working-directory: apps/log-daemon-go | |
| run: go vet ./... | |
| - name: Test | |
| working-directory: apps/log-daemon-go | |
| run: go test ./... -v |