Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Check

import type { Check } from "https://garn.io/ts/v0.0.16/mod.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

§
{
tag: "check";
nixExpression: NixExpression;
}
[src]