Actions & Composites
Composites are pre-built abstractions that produce typed GitHub Actions resources. They range from single-action wrappers to full multi-job workflow pipelines.
Action wrappers
Section titled “Action wrappers”Checkout
Section titled “Checkout”Wraps actions/checkout@v4. Clones the repository.
import { Checkout } from "@intentius/chant-lexicon-github";
Checkout({}).step // Default checkoutCheckout({ fetchDepth: 0 }).step // Full historyCheckout({ ref: "develop" }).step // Specific branchCheckout({ submodules: "recursive" }).step // With submodulesProps: ref?, repository?, fetchDepth?, token?, submodules?, sshKey?
SetupNode
Section titled “SetupNode”Wraps actions/setup-node@v4. Installs Node.js with optional dependency caching.
import { SetupNode } from "@intentius/chant-lexicon-github";
SetupNode({ nodeVersion: "22" }).step // Node 22SetupNode({ nodeVersion: "22", cache: "npm" }).step // With npm cacheSetupNode({ nodeVersion: "20", cache: "pnpm" }).step // pnpm cacheProps: nodeVersion?, cache? ("npm" | "pnpm" | "yarn"), registryUrl?
SetupGo
Section titled “SetupGo”Wraps actions/setup-go@v5. Installs Go.
import { SetupGo } from "@intentius/chant-lexicon-github";
SetupGo({ goVersion: "1.22" }).stepSetupGo({ goVersion: "stable" }).stepProps: goVersion?, cache?
SetupPython
Section titled “SetupPython”Wraps actions/setup-python@v5. Installs Python.
import { SetupPython } from "@intentius/chant-lexicon-github";
SetupPython({ pythonVersion: "3.12" }).stepSetupPython({ pythonVersion: "3.12", cache: "pip" }).stepProps: pythonVersion?, cache? ("pip" | "pipenv" | "poetry"), architecture?
CacheAction
Section titled “CacheAction”Wraps actions/cache@v4. Caches files between workflow runs.
import { CacheAction } from "@intentius/chant-lexicon-github";
CacheAction({ path: "~/.npm", key: "npm-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}", restoreKeys: ["npm-${{ runner.os }}-"],}).stepProps: path, key, restoreKeys?
UploadArtifact
Section titled “UploadArtifact”Wraps actions/upload-artifact@v4. Uploads files as workflow artifacts.
import { UploadArtifact } from "@intentius/chant-lexicon-github";
UploadArtifact({ name: "build-output", path: "dist/", retentionDays: 7,}).stepProps: name, path, retentionDays?, ifNoFilesFound?
DownloadArtifact
Section titled “DownloadArtifact”Wraps actions/download-artifact@v4. Downloads previously uploaded artifacts.
import { DownloadArtifact } from "@intentius/chant-lexicon-github";
DownloadArtifact({ name: "build-output", path: "dist/",}).stepProps: name, path?
CI pipeline composites
Section titled “CI pipeline composites”NodeCI
Section titled “NodeCI”A batteries-included composite that produces a full CI workflow and job. Generates a Workflow (push + PR on main) and a Job with checkout, setup-node, install, build, and test steps.
import { NodeCI } from "@intentius/chant-lexicon-github";
// Default: Node 22, npm, "build" + "test" scriptsconst { workflow, job } = NodeCI({});
// Customizedconst { workflow: w, job: j } = NodeCI({ nodeVersion: "20", packageManager: "pnpm", buildScript: "compile", testScript: "test:ci",});Props: nodeVersion?, packageManager? ("npm" | "pnpm" | "yarn" | "bun"), buildScript?, testScript?, installCommand?
Export the returned workflow and job directly:
const ci = NodeCI({ nodeVersion: "22", packageManager: "npm" });export const workflow = ci.workflow;export const build = ci.job;NodePipeline
Section titled “NodePipeline”A production-grade Node pipeline with separate build and test jobs connected by artifact passing. The build job uploads artifacts; the test job downloads them and runs tests with needs: ["build"].
import { NodePipeline } from "@intentius/chant-lexicon-github";
const { workflow, buildJob, testJob } = NodePipeline({ nodeVersion: "22", packageManager: "pnpm", buildScript: "build", testScript: "test:ci", buildArtifactPaths: ["dist/", "lib/"],});Props: nodeVersion?, packageManager?, buildScript?, testScript?, installCommand?, buildArtifactPaths?, artifactName?, artifactRetentionDays?, runsOn?
Pipeline presets
Section titled “Pipeline presets”import { BunPipeline, PnpmPipeline, YarnPipeline } from "@intentius/chant-lexicon-github";
const bun = BunPipeline({}); // packageManager: "bun", uses oven-sh/setup-bun@v2const pnpm = PnpmPipeline({}); // packageManager: "pnpm"const yarn = YarnPipeline({}); // packageManager: "yarn"PythonCI
Section titled “PythonCI”Python CI with test and optional lint jobs. Supports pip and Poetry workflows.
import { PythonCI } from "@intentius/chant-lexicon-github";
const { workflow, testJob, lintJob } = PythonCI({ pythonVersion: "3.12", testCommand: "pytest --junitxml=report.xml --cov", lintCommand: "ruff check .",});
// Omit lint jobconst { workflow: w, testJob: t } = PythonCI({ lintCommand: null });
// Poetry modeconst poetry = PythonCI({ usePoetry: true });Props: pythonVersion?, testCommand?, lintCommand? (null to omit), requirementsFile?, usePoetry?, runsOn?
DockerBuild
Section titled “DockerBuild”Docker build and push using official Docker actions (login, setup-buildx, metadata, build-push). Configured for GitHub Container Registry by default.
import { DockerBuild } from "@intentius/chant-lexicon-github";
const { workflow, job } = DockerBuild({ registry: "ghcr.io", imageName: "ghcr.io/my-org/my-app", dockerfile: "Dockerfile", platforms: ["linux/amd64", "linux/arm64"],});Props: tag?, dockerfile?, context?, registry?, imageName?, tagLatest?, buildArgs?, push?, platforms?, runsOn?
DeployEnvironment
Section titled “DeployEnvironment”Deploy and cleanup job pair using GitHub Environments with concurrency control.
import { DeployEnvironment } from "@intentius/chant-lexicon-github";
const { deployJob, cleanupJob } = DeployEnvironment({ name: "staging", deployScript: ["npm run build", "npm run deploy"], cleanupScript: "npm run teardown", url: "https://staging.example.com",});Props: name (required), deployScript (required), cleanupScript?, url?, concurrencyGroup?, cancelInProgress?, runsOn?
Go CI with build, test, and optional lint jobs. Uses golangci-lint-action for linting.
import { GoCI } from "@intentius/chant-lexicon-github";
const { workflow, buildJob, testJob, lintJob } = GoCI({ goVersion: "1.22", buildCommand: "go build ./...", testCommand: "go test ./... -v -race",});
// Without lintconst noLint = GoCI({ lintCommand: null });Props: goVersion?, testCommand?, buildCommand?, lintCommand? (null to omit), runsOn?
Combining composites in a job
Section titled “Combining composites in a job”Composites return objects with a .step property. Combine them freely in any job:
import { Job, Step, Checkout, SetupNode, CacheAction, UploadArtifact,} from "@intentius/chant-lexicon-github";
export const build = new Job({ "runs-on": "ubuntu-latest", timeoutMinutes: 15, steps: [ Checkout({}).step, SetupNode({ nodeVersion: "22", cache: "npm" }).step, new Step({ name: "Install", run: "npm ci" }), new Step({ name: "Build", run: "npm run build" }), UploadArtifact({ name: "dist", path: "dist/" }).step, ],});Using raw action references
Section titled “Using raw action references”You can always use raw uses: strings for actions that do not have a typed composite wrapper:
import { Step } from "@intentius/chant-lexicon-github";
new Step({ name: "Deploy to Pages", uses: "actions/deploy-pages@v4", with: { artifact_name: "github-pages" },});The GHA001 lint rule will suggest a typed composite if one is available.