ci: add CI gate; convert owned-TS toolchain to bun + biome - #2
Merged
Conversation
rigel-mintaka
force-pushed
the
mintaka-rig-2213-solid-markdown-ci
branch
3 times, most recently
from
August 21, 2026 18:11
0721e07 to
446b933
Compare
Add a `.github/workflows/ci.yml` whose job is named `CI` so the fork's `main` branch-protection ruleset can pin `["CI"]` as its required status check. The job runs the full gate on every pull request and push to main: lint, typecheck, test, build. Convert the owned-TS toolchain to bun + biome per the fork conventions (owned forks adopt bun + biome): - Replace pnpm with bun; `pnpm-lock.yaml` -> `bun.lock`. - Drop eslint + prettier + husky for the biome the repo already devDeps; biome is now the single lint/format tool (`biome check .`). - Drop vitest (its ancient 0.33 pulled a second vite major that broke `tsc --noEmit`); tests run under `bun test`. - Add a real smoke test for the pure `src/utils.ts` helpers so the gate has a green test to run. - Scope the package typecheck to `src/` (the nested `dev/` and `ssr-demo/` demo apps are separate packages, not part of the published library). The gate is green on `main` (lint/typecheck/test/build all pass), so pinning `["CI"]` on the ruleset will not deadlock non-admin merges. Co-authored-by: Matt Wilkinson <matt@rigel.build>
rigel-mintaka
force-pushed
the
mintaka-rig-2213-solid-markdown-ci
branch
from
August 21, 2026 18:17
446b933 to
6ad40ff
Compare
rigel-mintaka
marked this pull request as ready for review
August 21, 2026 18:18
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a
.github/workflows/ci.ymlwhose job is namedCIso the fork'smainbranch-protection ruleset can pin
["CI"]as its required status check. The jobruns the full gate on every pull request and push to main: lint, typecheck,
test, build.
Convert the owned-TS toolchain to bun + biome per the fork conventions (owned
forks adopt bun + biome):
pnpm-lock.yaml->bun.lock.is now the single lint/format tool (
biome check .).tsc --noEmit); tests run underbun test.src/utils.tshelpers so the gate has agreen test to run.
src/(the nesteddev/andssr-demo/demo apps are separate packages, not part of the published library).
The gate is green on
main(lint/typecheck/test/build all pass), so pinning["CI"]on the ruleset will not deadlock non-admin merges.Co-authored-by: Matt Wilkinson matt@rigel.build