Check
import type { Check } from "https://garn.io/ts/v0.0.20/check.ts";Checks are commands (usually shell commands) that are used to define
reproducible automated tests or other checks.
Checks are run in a sandbox. This means they don't have access to your
locally installed tools, local file system, or the internet. Instead, they
are always based on an underlying Environment, and through that will have
access to the tools and everything else that the environment provides.
You can run Checks with garn check.
type Check = {
tag: "check";
nixExpression: NixExpression;
};§Type
§
{
[src]tag: "check";
nixExpression: NixExpression;
}