Skip to content

Commit

Permalink
fix: CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
VanishMax committed Mar 26, 2024
1 parent f658034 commit a1f4e0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/config/parseConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const projectSchema = z.object({
}).strict();

const configSchema = z.object({
$schema: z.string().optional(),
projects: z.array(projectSchema)
}).strict();

Expand All @@ -31,4 +32,4 @@ export function parseConfig(src: string) {

export function verifyConfig(config: Config) {
return configSchema.parse(config);
}
}

0 comments on commit a1f4e0f

Please sign in to comment.