rescript-fluentci
v0.1.5
Published
FluentCI SDK for Rescript
Downloads
2
Readme
FluentCI Rescript SDK
This is the official FluentCI SDK for Rescript. It allows you to write CI/CD pipelines in Rescript.
Installation
bun add rescript-fluentci
Quick Start
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.