Skip to content

Commit b3af5c5

Browse files
ci: add type check step to workflow and suppress any-type lint error in sign-up form
1 parent 99f1d83 commit b3af5c5

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,8 @@ jobs:
3838
- name: Run Lint
3939
run: pnpm run lint
4040

41+
- name: Type Check
42+
run: pnpm exec tsc --noEmit
43+
4144
- name: Build Project
4245
run: pnpm run build

app/auth/sign-up/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { Button } from "@/components/ui/button";
2222

2323
export default function SignupPage() {
2424
const form = useForm<z.infer<typeof signUpSchema>>({
25+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2526
resolver: zodResolver(signUpSchema as any),
2627
defaultValues: {
2728
name: "",

0 commit comments

Comments
 (0)