ci: disable "verify env" step

Until https://github.com/cloudflare/workers-sdk/issues/5082 is fixed
This commit is contained in:
2024-06-04 08:59:11 -04:00
parent 0dfdd45143
commit 204a618385
4 changed files with 18 additions and 10 deletions

8
src/types/env.d.ts vendored
View File

@@ -1,10 +1,10 @@
// Generated by Wrangler on Mon Jun 03 2024 08:35:59 GMT-0400 (Eastern Daylight Time)
// Generated by Wrangler on Tue Jun 04 2024 08:51:21 GMT-0400 (Eastern Daylight Time)
// by running `wrangler types src/types/env.d.ts`
import type { Env as HonoEnv } from "hono";
interface Env {
ENABLE_ANIFY: string;
TURSO_URL: string;
QSTASH_URL: string;
TURSO_URL: "libsql://humble-argent-silverandroid.turso.io";
QSTASH_URL: "https://qstash.upstash.io/v2/publish";
ENABLE_ANIFY: boolean;
TURSO_AUTH_TOKEN: string;
}