Browse Source

Adding drone config

Kirk Trombley 5 năm trước cách đây
mục cha
commit
c95a10ca95
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  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
+
+