github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/samples/drone.yaml (about)

     1  ---
     2  kind: pipeline
     3  type: docker
     4  name: default
     5  
     6  steps:
     7  - name: backend
     8    image: golang
     9    commands:
    10    - go build
    11    - go test
    12  
    13  - name: frontend
    14    image: node
    15    commands:
    16    - npm install
    17    - npm run test
    18  
    19  ...