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
I noticed there's no
.github/workflowsdirectory in this repo at all. A PR that breaks the Docusaurus build (pnpm build) or failstsctypecheck could merge intomasterwith no automated signal.I'd add a minimal build-check workflow:
Related issues