From 110acf1b440954a3765f5ceb78d2d6ce2158d7aa Mon Sep 17 00:00:00 2001 From: km-anthropic Date: Tue, 19 Aug 2025 13:47:27 -0700 Subject: [PATCH] Test CI failure for auto-fix workflows --- test-failure.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test-failure.ts diff --git a/test-failure.ts b/test-failure.ts new file mode 100644 index 0000000..f75b6ce --- /dev/null +++ b/test-failure.ts @@ -0,0 +1,12 @@ +// This file intentionally has TypeScript errors to trigger CI failure +const testFunction = (param: string): number => { + // Type error: returning string instead of number + return "this should be a number"; +} + +// Syntax error: missing closing brace +function brokenFunction() { + console.log("missing closing brace" +} + +export { testFunction, brokenFunction }; \ No newline at end of file