Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
type alias JobOptions
import { type JobOptions } from "https://deno.land/x/cicada@v0.1.2/lib.ts";

The options for a job, including the name, image, environment variables, cache, and steps.

definition: { image: string; steps: Step[]; name?: string; env?: Record<string, string>; cacheDir?: CacheDir; workingDirectory?: FilePath; dependsOn?: Job[]; }