Commit Graph
9 Commits
Author SHA1 Message Date
austinandClaude Opus 4.8 d570e3579b CI: actually run the tests, and let them gate the image
build-and-publish / build (push) Successful in 1m42s
The image build runs 'mvn -DskipTests' and the workflow was only build -> Trivy -> push, so
no app test has ever run in CI — only Trivy gated a merge. The platform contract tests added
in 0.1.9 were not running either, which defeated their purpose.

They cannot run inside 'docker build' — Testcontainers needs a Docker daemon and a build has
none. Maven runs as a sibling container instead, mounting the workspace volume act_runner
gave this job (matched on GITHUB_WORKSPACE, since it is mounted at the full repo path rather
than at /workspace) and sharing the host network so published test ports resolve as localhost.

Verified on itsthevine before rolling out here: 33 tests ran, and a deliberately failing test
failed the run at the Test step with the registry digest unchanged — no image published.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XXKjx7FNyRVAjU8dgB5KhN
2026-07-23 12:20:41 -05:00
austinandClaude Opus 4.8 220b9af34c Restore the dependency upgrades I reverted
build-and-publish / build (push) Successful in 1m20s
The merged Renovate bumps were undone when I rsync'd a local tree over these repos while
pushing the contract tests — that local package.json was a pre-merge backup I had kept so
the PRs would be the source of the versions.

Re-applied and verified from a clean install (rm -rf node_modules package-lock.json &&
npm install && tsc && vite build), which is also what regenerates a lock file consistent
with all the bumps at once.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XXKjx7FNyRVAjU8dgB5KhN
2026-07-23 09:56:47 -05:00
austinandClaude Opus 4.8 0c43951672 Inherit the platform contract tests, and extend the shared Renovate preset
build-and-publish / build (push) Successful in 1m18s
PlatformWebContract asserts what this app must do because it is on the platform: an /api
path matching no controller 404s rather than returning the SPA, health is UP, the liveness
and readiness probes exist, and a client-side route forwards to the shell. That first one
shipped broken to six live sites and was found by typing a URL by hand; now it fails a
build instead.

renovate.json is three lines pointing at austin/renovate-config. The rules were copied per
repo, so they matched only by luck and a change was six edits.

Platform 0.1.9.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XXKjx7FNyRVAjU8dgB5KhN
2026-07-23 09:46:54 -05:00
austinandClaude Opus 4.8 9230ad1bc4 tsconfig: drop baseUrl, which TypeScript 7 removed
build-and-publish / build (push) Successful in 1m11s
TS7 errors with 'Option baseUrl has been removed'. The paths mapping already points at
./src/*, which resolves relative to this file without it, and TS 5.9 accepts the same
config — so this lands safely ahead of the TypeScript 7 bump.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XXKjx7FNyRVAjU8dgB5KhN
2026-07-23 08:50:09 -05:00
austin d83a970166 Update dependency typescript to v7
renovate/artifacts Artifact file update failure
2026-07-23 12:44:24 +00:00
austin 99f7a97572 Update dependency lucide-react to v1.26.0
renovate/artifacts Artifact file update failure
2026-07-23 12:44:23 +00:00
austin 92c921db82 Update bennett platform to v0.1.7 2026-07-23 12:44:22 +00:00
austinandClaude Opus 4.8 8abca06a86 Rebuild on the Bennett platform: Spring Boot + Vite/React
build-and-publish / build (push) Successful in 1m18s
Same site — glass header, bento grid, hero drift, dark mode — with three things fixed
on the way:

- Tailwind and lucide came from CDNs on every page load, and the fonts from Google. All
  are now built in or self-hosted, so the site owes nothing to third parties at runtime.
- The hero and bento photographs were hot-linked from Unsplash. They are re-encoded to
  webp and served from the MinIO bucket with a year-long cache.
- The ministries and labs were hard-coded in the markup, so launching a ministry meant
  editing HTML. They now come from /api/network.

The mobile menu button also opens something now; it did nothing before.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XXKjx7FNyRVAjU8dgB5KhN
2026-07-23 07:30:01 -05:00
austinandClaude Opus 4.8 f2be8ce247 Add Docker build + Gitea Actions CI (self-host at reformedwitness.net)
build-and-publish / build (push) Successful in 3s
Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
2026-07-22 12:59:01 -05:00