.drone.yml 183 B

12345678910111213
  1. pipeline:
  2. backend:
  3. image: golang
  4. commands:
  5. - go get
  6. - go build
  7. - go test
  8. frontend:
  9. image: node:6
  10. commands:
  11. - npm install
  12. - npm test