v0.4.1
A ready-to-use CI/CD Pipeline and jobs for Gleam projects.
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
deno.land/x
other
Gleam Pipeline
A ready-to-use CI/CD Pipeline for your Gleam projects.
🚀 Usage
Run the following command:
fluentci run gleam_pipelineOr, if you want to use it as a template:
fluentci init -t gleamThis will create a .fluentci folder in your project.
Now you can run the pipeline with:
dagger run fluentci .Or simply:
fluentciJobs
| Job | Description |
|---|---|
| check | Run type checking |
| format | Format source code |
| test | Run the tests |
| build | Build the project |
build(src: String!): String
check(src: String!): String
format(src: String!): String
test(src: String!): StringProgrammatic usage
You can also use this pipeline programmatically:
import { check, format, test, build } from "https://pkg.fluentci.io/gleam_pipeline@v0.4.1/mod.ts";
await check();
await format();
await test();
await build();