Group Stage
Properties
- stages - Stage
Configures a series of stages to execute.
Examples
type: group
spec:
stages:
- type: ci
spec:
steps:
- type: run
spec:
script: go build
container: golang
- type: run
spec:
script: go test
container: golang
- type: ci
spec:
steps:
- type: run
spec:
script: npm install
container: node
- type: run
spec:
script: npm test
container: node