kind: pipeline
type: docker
name: default

steps:
  - name: build
    image: node
    commands:
      - npm install
      - npm test
  - name: try
    image: busybox
    command: 
      - ls
      - cat README
  - name: echo
    image: plugins/git
    commands:
      - echo "It's a test step."
    when:
      status: [ success, failure ]

kind: pipeline
type: exec
name: exec step

plateform:
  os: linux
  arch: amd64
  
steps:
  - name: cat
    command:
      - ls
      - cat README