.drone.yml 181 B

12345678910111213141516
  1. kind: pipeline
  2. type: docker
  3. name: default
  4. steps:
  5. - name: build-ui
  6. image: node:12.7.0
  7. commands:
  8. - cd client
  9. - yarn install
  10. - yarn build
  11. when:
  12. branch:
  13. - master