fix: type-check all edge functions in ci (#7)

This commit is contained in:
Felipe Domingues 2026-05-28 20:33:24 -03:00 committed by GitHub
parent 871b3f809a
commit 6b3943807c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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