From a1f4e0f41de258d8a6e614707ed5e09e35d81900 Mon Sep 17 00:00:00 2001 From: vanishmax Date: Tue, 26 Mar 2024 18:53:07 +0100 Subject: [PATCH] fix: CI errors --- src/config/parseConfig.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/parseConfig.ts b/src/config/parseConfig.ts index f0ae1f7e0..31ea905b9 100644 --- a/src/config/parseConfig.ts +++ b/src/config/parseConfig.ts @@ -17,6 +17,7 @@ const projectSchema = z.object({ }).strict(); const configSchema = z.object({ + $schema: z.string().optional(), projects: z.array(projectSchema) }).strict(); @@ -31,4 +32,4 @@ export function parseConfig(src: string) { export function verifyConfig(config: Config) { return configSchema.parse(config); -} \ No newline at end of file +}