pantry/.github/scripts/qa-required.ts
2023-12-13 05:42:25 -05:00

10 lines
255 B
TypeScript
Executable file

#!/usr/bin/env -S pkgx deno run --allow-read
import { hooks } from "pkgx"
const project = Deno.args[0]
const yml = await hooks.usePantry().project(project).yaml()
const qaRequired = yml?.["test"]?.["qa-required"] === true
Deno.exit(qaRequired ? 0 : 1)