Skip to main content

Deno

Run the following command to run the pre-built Deno Pipeline in your project to deploy to Deno Deploy:

fluentci run deno_pipeline deploy

Environment variables (Deno Deploy)

VariableDescriptionDefault
DENO_PROJECTYour project name
NO_STATICDisable static assetsfalse
EXCLUDEExclude files from deploy
DENO_DEPLOY_TOKENYour Deno Deploy token
DENO_MAIN_SCRIPTYour main scriptmain.tsx

Programmatic usage

You can also use this pipeline programmatically:

import { fmt, lint, test } from "https://deno.land/x/deno_pipeline/mod.ts";

await fmt();
await lint();
await test();