chore: format plans

This commit is contained in:
2026-06-27 17:46:05 +02:00
parent 549f964e8e
commit 177081edd0
4 changed files with 65 additions and 24 deletions

View File

@@ -1,7 +1,8 @@
---
finding: "Add CI for the existing verification command"
catalog: "DX / Tooling"
impact: "Local checks are well-defined, but nothing checked in runs them consistently before changes land."
impact:
"Local checks are well-defined, but nothing checked in runs them consistently before changes land."
base_commit: "0d31d46"
---
@@ -26,10 +27,17 @@ HIGH - no GitHub Actions workflow was present, while local verification is docum
## Resolution Approach
Add a GitHub Actions workflow that installs the pinned toolchain from `.mise.toml`, installs Bun dependencies with the lockfile, and runs `just check`. The workflow should mirror documented local behavior as closely as possible.
Add a GitHub Actions workflow that installs the pinned toolchain from `.mise.toml`, installs Bun
dependencies with the lockfile, and runs `just check`. The workflow should mirror documented local
behavior as closely as possible.
This plan depends on fixing the current Go lint baseline first. Do not add CI while `just check` is known to fail locally, unless the workflow is intentionally introduced as failing and the maintainer explicitly wants that.
This plan depends on fixing the current Go lint baseline first. Do not add CI while `just check` is
known to fail locally, unless the workflow is intentionally introduced as failing and the maintainer
explicitly wants that.
Use caching only if the first version is too slow. Start simple: checkout, setup mise or equivalent, `mise install`, `bun install --frozen-lockfile`, `just check`. Ensure CGO/SQLite prerequisites are available on the runner.
Use caching only if the first version is too slow. Start simple: checkout, setup mise or equivalent,
`mise install`, `bun install --frozen-lockfile`, `just check`. Ensure CGO/SQLite prerequisites are
available on the runner.
Verify locally with `just check` after plan 001 is complete. Verify workflow syntax using GitHubs normal workflow validation when pushed.
Verify locally with `just check` after plan 001 is complete. Verify workflow syntax using GitHubs
normal workflow validation when pushed.