Browse Source

Adding drone config

Kirk Trombley 5 years ago
parent
commit
c95a10ca95
1 changed files with 13 additions and 0 deletions
  1. 13 0
      .drone.yml

+ 13 - 0
.drone.yml

@@ -0,0 +1,13 @@
+kind: pipeline
+type: docker
+name: default
+
+steps:
+- name: build-ui
+  image: node:12.7.0
+  commands:
+  - cd client
+  - yarn install
+  - yarn build
+
+