Speed up CI and consolidate dependency updates - #160
Merged
Conversation
ryanbaumann
marked this pull request as ready for review
July 27, 2026 20:24
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 changed
main, where the production Cloud Build already builds and smoke-tests the same commitbuild-cachetag and BuildKit inline cache metadata for Cloud Buildreact-domwith React 19.2.8 after the combined suite exposed React's exact-version requirementWhy
PR CI compiled the application graph three times: package builds, a staged all-app smoke build, and Docker. Pushes to
mainthen repeated the Docker build in both GitHub Actions and Cloud Build. The dependency updates were also split across 15 overlapping Dependabot PRs, including a Tailwind major update that did not include its required PostCSS migration and a React-only update that failed against the older React DOM package.This keeps one production-shaped compilation boundary per event while preserving package-level test isolation and gateway/container smoke coverage.
Validation
npm run check:labs— passednpm run check:content— passednpm run test:labs— 47 passedcd gateway && npm test— 141 passednode scripts/build-local.mjs --skip-install --allow-missing-artifacts— all apps built and stagednode scripts/smoke.mjs— 20 passednpm ci, typecheck, 573 Vitest tests, 2 source-integrity tests, production build — passednpm ci, typecheck, 9 tests, production build, generated Tailwind utility audit — passednpm ci, lint, 38 tests, production build — passednpm ci, 5 tests, production build — passednpm ci, 2 tests, production build — passedgit diff --check— passedFollow-up evidence
The PR's GitHub Actions run will measure the reduced job/build time. The next successful production deployment will populate and then exercise the Cloud Build cache; no production build or deployment was triggered locally.