Skip to main content

Gleam

Running the pre-built Gleam pipeline directly

Run the following command to run the pre-built Gleam Pipeline without having to initialize a project:

fluentci run gleam_pipeline

Add gleam Pipeline to your project

Run the following command to add Gleam pipeline to your project:

fluentci init -t gleam

This will create a .fluentci directory in your project, feel free to customize the pipeline for your needs. You can then run the following command to start the pipeline:

fluentci run .

Or simply:

fluentci

Jobs

JobDescription
checkRun type checking
formatFormat source code
testRun the tests
buildBuild the project

Programmatic usage

You can also use this pipeline programmatically:

import { check, format, test, build } from "https://pkg.fluentci.io/[email protected]/mod.ts";

await check();
await format();
await test();
await build();