This is the official FluentCI SDK for Rescript. It allows you to write CI/CD pipelines in Rescript.
bun add rescript-fluentci
open FluentCI
open FluentCI.Deno
let output =
await dag
->Client.pipeline(~name="demo")
->Pipeline.withExec(["echo", "Hello World!"])
->Pipeline.stdout
Console.log(output)
Run the following command to execute the pipeline:
bun run res:build
fluentci-engine run -- deno run -A src/Demo.res.mjs
See fluentci-engine and fluentci for more information.