Check
import type { Check } from "https://garn.io/ts/v0.0.20/check.ts";
Check
s are commands (usually shell commands) that are used to define
reproducible automated tests or other checks.
Check
s 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 Check
s with garn check
.
type Check = {
tag: "check";
nixExpression: NixExpression;
};§Type
§
{
[src]tag: "check";
nixExpression: NixExpression;
}