Add build step to Drone config.

pull/7/head
Sander Vocke 5 years ago
parent f98e9d5764
commit b7a83ba857
  1. 5
      .drone.yml

@ -10,6 +10,11 @@ steps:
- cd server && npm install; cd .. - cd server && npm install; cd ..
- cd client && npm install; cd .. - cd client && npm install; cd ..
- name: front-end build
image: node
commands:
- cd client && npm build; cd ..
- name: back-end test - name: back-end test
image: node image: node
commands: commands:

Loading…
Cancel
Save