Add a CI gate and record the deployed commit - #4
Merged
Conversation
gitstat had no workflows at all despite serving a live Pages deployment, so nothing checked a change before it shipped. Verified locally before adding the gate: `npm run lint` exits 0 and `npm run build` succeeds, so main starts green. `build` is `tsc -b && vite build`, which makes it the typecheck gate too. Also passes --commit-hash on deploy so the live deployment's source SHA is recorded explicitly rather than inferred from the local checkout. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
gitstat had no workflow files at all while serving a live Pages deployment —
nothing checked a change before it shipped. It was the only web app in the fleet
in that state.
CI
Verified locally before adding it so main starts green, rather than landing a
gate that immediately goes red:
Concurrency group is per-ref with
cancel-in-progress, matching the rest of thefleet.
Deploy
deploynow passes--commit-hash "$(git rev-parse HEAD)"so the livedeployment's source SHA is recorded explicitly instead of inferred from whatever
the local checkout happened to be.
🤖 Generated with Claude Code