Skip to content

Commit adb3786

Browse files
katchu11claude
andcommitted
Test: Add file with intentional CI errors
Testing enhanced CI auto-fix workflow 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5bc2421 commit adb3786

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test-errors.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// Intentional TypeScript errors for testing
2+
const unused = "This variable is never used"
3+
4+
function badFormatting(){console.log("No space before brace")}
5+
6+
const missingSemicolon = "Missing semicolon"
7+
8+
export function typeError(input: string): number {
9+
return input; // Type error: returning string instead of number
10+
}

0 commit comments

Comments
 (0)