Files
claude-code-action/test-failure.ts
2025-08-19 15:19:01 -07:00

13 lines
406 B
TypeScript

// This file intentionally has TypeScript errors to trigger CI failure
// Testing auto-fix with MCP file ops enabled
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 };