Skip to content

@ghagen/ghagen

Step model for defining workflow steps.

Function Description

step

Create a step model for use inside a job’s steps array.

Examples

step({ uses: "actions/checkout@v4" })
step({
name: "Run tests",
run: "npm test",
env: { CI: "true" },
})