Skip to content

Commit 110acf1

Browse files
committed
Test CI failure for auto-fix workflows
1 parent e9dc305 commit 110acf1

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

test-failure.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// This file intentionally has TypeScript errors to trigger CI failure
2+
const testFunction = (param: string): number => {
3+
// Type error: returning string instead of number
4+
return "this should be a number";
5+
}
6+
7+
// Syntax error: missing closing brace
8+
function brokenFunction() {
9+
console.log("missing closing brace"
10+
}
11+
12+
export { testFunction, brokenFunction };

0 commit comments

Comments
 (0)