fix: type-check all edge functions in ci

This commit is contained in:
Felipe Domingues 2026-05-28 20:24:06 -03:00
parent 871b3f809a
commit 63984ba135
3 changed files with 16 additions and 20 deletions

View file

@ -25,7 +25,8 @@ function generateUsername(name: string): string {
}
async function usernameAvailable(
admin: ReturnType<typeof createClient>,
// deno-lint-ignore no-explicit-any
admin: any,
username: string,
): Promise<boolean> {
const { data } = await admin