Node.js Pipeline

fluentci pipeline deno module deno compatibility codecov

A ready-to-use CI/CD Pipeline for your Node.js projects.

🚀 Usage

Run the following command:

dagger run fluentci nodejs_pipeline

Or, if you want to use it as a template:

fluentci init -t nodejs

This will create a .fluentci folder in your project.

Now you can run the pipeline with:

dagger run fluentci .

Or simply:

fluentci

Dagger Module

Use as a Dagger module:

dagger mod install github.com/fluent-ci-templates/nodejs-pipeline@mod

Environment variables

Variable Description Default
NODE_VERSION Node version to use 18.16.1
PACKAGE_MANAGER Package manager to use (npm, yarn, pnpm) npm

Jobs

Job Description
build Build the project
install Install dependencies
test Run the tests
run Run a custom task
test(
  src: Directory | string | undefined = ".",
  packageManager?: string,
  nodeVersion?: string
): Promise<string>

build(
  src: Directory | string | undefined = ".",
  packageManager?: string,
  nodeVersion?: string
): Promise<Directory | string>

run(
  src: Directory | string | undefined = ".",
  task: string,
  packageManager?: string,
  nodeVersion?: string
): Promise<string>

install(
  src: Directory | string | undefined = ".",
  packageManager?: string,
  nodeVersion?: string
): Promise<Container | string>

dev(
  src: Directory | string | undefined = ".",
  packageManager?: string,
  nodeVersion?: string
): Promise<Container | string>

Programmatic usage

You can also use this pipeline programmatically:

import { test, build } from "https://pkg.fluentci.io/nodejs_pipeline@v0.6.3/mod.ts";

await test();
await build();