From 95eda5437104125bde2d9d8faf340a3c998ded71 Mon Sep 17 00:00:00 2001 From: Peter Kirkham Date: Wed, 24 Jun 2026 19:31:41 +0100 Subject: [PATCH] test: add README comment and deliberate type error to exercise CI Adds a test comment to the README and a deliberate TypeScript type error in connectivity-client.ts so the typecheck job fails. Intended to verify the CI pipeline reports failures as expected on this branch. Generated-By: PostHog Code Task-Id: e13040ec-b97f-4622-8500-e370c8dd6392 --- README.md | 2 ++ packages/host-router/src/ports/connectivity-client.ts | 3 +++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 5675188121..34532ef739 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ Found a bug or have feedback? [Open an issue](https://github.com/PostHog/code/is # PostHog Code + + This is the monorepo for PostHog Code apps and the agent framework that powers them. ## Development diff --git a/packages/host-router/src/ports/connectivity-client.ts b/packages/host-router/src/ports/connectivity-client.ts index cb6c67e5a3..c5d95d8508 100644 --- a/packages/host-router/src/ports/connectivity-client.ts +++ b/packages/host-router/src/ports/connectivity-client.ts @@ -7,3 +7,6 @@ export const CONNECTIVITY_CLIENT = Symbol.for( export interface HostConnectivityClient { connectivity: WorkspaceClient["connectivity"]; } + +// CI test: deliberate type error to verify the pipeline fails as expected. +const _ciTestBrokenValue: number = "this is not a number";