From b7a83ba857e04bd7ce7a54aa0c4cbbfc9b8d9cec Mon Sep 17 00:00:00 2001 From: Sander Vocke Date: Fri, 14 Aug 2020 00:01:56 +0200 Subject: [PATCH] Add build step to Drone config. --- .drone.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.drone.yml b/.drone.yml index e89500b..bba996c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,6 +10,11 @@ steps: - cd server && npm install; cd .. - cd client && npm install; cd .. +- name: front-end build + image: node + commands: + - cd client && npm build; cd .. + - name: back-end test image: node commands: