Skip to content

No CI at all — PRs can merge with a broken build #8

Description

@Jaro-c

I noticed there's no .github/workflows directory in this repo at all. A PR that breaks the Docusaurus build (pnpm build) or fails tsc typecheck could merge into master with no automated signal.

I'd add a minimal build-check workflow:

name: CI
on:
  pull_request:
    branches: [master]
  push:
    branches: [master]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: pnpm/action-setup@v4
      - uses: actions/setup-node@v4
        with:
          node-version: "24"
          cache: pnpm
      - run: pnpm install --frozen-lockfile
      - run: pnpm typecheck
      - run: pnpm build

Related issues

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions