Default Stages


By default there are 3 main stages:


examples/pipelines/default-stages/.gitlab-ci.yml
build-job:
    stage: build
    script: echo Build

test-job:
    stage: test
    script: echo Test

deploy-job:
    stage: deploy
    script: echo Deploy