Skip to content

Pipeline arguments should be better #41

@markovejnovic

Description

@markovejnovic
pipeline(project.run("build"), project.run("test"), project.run("lint"), {
      env: { CI: "true" },
      defaultImage: "ubuntu:24.04",
    })

should be

pipeline([
  project.run("build"),
  project.run("test"),
  project.run("lint"),
], {
      env: { CI: "true" },
      defaultImage: "ubuntu:24.04",
    })

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions