v0.6.6
A ready-to-use CI/CD Pipeline and jobs for Bun projects.
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
deno.land/x
other
skypack.dev
lodash
Bun Pipeline
A ready-to-use CI/CD Pipeline for your Bun projects.

🚀 Usage
Run the following command:
fluentci run bun_pipelineOr, if you want to use it as a template:
fluentci init -t bunThis will create a .fluentci folder in your project.
Now you can run the pipeline with:
fluentci run .Or simply:
fluentciDagger Module
Use as a Dagger Module:
dagger mod install github.com/fluent-ci-templates/bun-pipeline@modEnvironment variables
| Variable | Description |
|---|---|
| NODE_VERSION | The Node.js version to use. Defaults to 18.16.1 |
| BUN_VERSION | The Bun version to use. Defaults to latest |
Jobs
| Job | Description |
|---|---|
| run | Run a command |
| test | Run the tests |
test(
src: string | Directory | undefined = ".",
bunVersion: string = "latest"
): Promise<string>
run(
command: string,
src: string | Directory | undefined = ".",
bunVersion: string = "latest"
): Promise<string>
Programmatic usage
You can also use this pipeline programmatically:
import { test } from "https://pkg.fluentci.io/bun_pipeline@v0.6.6/mod.ts";
await test();