ci: run full test suite on PR + branded agentimization release bot - #4
Merged
Conversation
antlio
force-pushed
the
anthony/ci-release-bot
branch
from
June 29, 2026 12:04
bf49245 to
a77b04b
Compare
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.
What
Two CI/release improvements:
CI runs the full test suite on every PR.
ci.ymlnow uses the rootbun run build/test/typecheckscripts (which fan out to every workspace viabun run --filter '*') instead of hardcoding per-packagetsc/vitest. This closes a gap: the CLI vitest suite (apps/cli/src/ui/__tests__/, 32 tests) previously never ran in CI — onlypackages/coredid. Now both run (70 tests total). Verified locally from a clean checkout:build → test → typecheckpasses deterministically andbun run --filter '*'topo-orders the workspace builds (cli's typecheck needs core/shareddist/*.d.ts, which build first).Release PR is authored by a branded agentimization bot.
release.ymlmints a token from anagentimizationGitHub App viaactions/create-github-app-token@v3and passes it toactions/checkoutandchangesets/action(github-token,setupGitUser: false,commitMode: github-api). The "chore: version packages" release PR + version commit are now attributed to the bot instead ofgithub-actions[bot].