Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ icon/image story coherent off the back of it:

## Telemetry and badge audit (2026-08-14)

- The main website has no visible Go Report Card, shields.io, or other external
badge surface to migrate.
- The main website has no visible external provider badge surface to migrate.
- The homepage project status labels are product content, not telemetry or
provider badges.
- Stale Vercel Analytics references were documentation-only and are removed as
Expand Down
6 changes: 6 additions & 0 deletions frontend/test/posthog-source.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,9 @@ test("repo-owned CI runs the website contracts and production build", async () =
assert.match(workflow, /npm run test:posthog/);
assert.match(workflow, /npm run build/);
});

test("public documentation does not advertise the retired provider badge", async () => {
const roadmap = await read("../ROADMAP.md");
const retiredBadgeText = ["Go", "Report", "Card"].join("\\s+");
assert.doesNotMatch(roadmap, new RegExp(retiredBadgeText, "i"));
});
Loading