From 9c79c751fe5404089aef15f1ed4cb9c9d86ca2dc Mon Sep 17 00:00:00 2001 From: Sander Vocke Date: Fri, 4 Sep 2020 15:43:05 +0200 Subject: [PATCH] Drone syntax --- .drone.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index 424c115..7b6de8f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -14,7 +14,8 @@ steps: commands: - cd server && npm test; cd .. - +--- + kind: pipeline type: kubernetes name: front-end @@ -24,11 +25,11 @@ steps: image: node commands: - npm install - - cd client && npm install; cd .. + - cd client && npm install; cd .. - name: front-end compile - image: node - commands: - - cd client && ./node_modules/.bin/tsc; cd .. + image: node + commands: + - cd client && ./node_modules/.bin/tsc; cd .. ---