Skip to main content

Bun

Running the pre-built Bun pipeline directly

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

fluentci run bun_pipeline

Add Bun Pipeline to your project

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

fluentci init -t bun

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
testRun your tests

Programmatic usage

You can also use this pipeline programmatically:

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

await test();