From a569b1c7c52125ddc2c013dfcb6d0981880cfce3 Mon Sep 17 00:00:00 2001 From: Sander Vocke Date: Thu, 13 Aug 2020 21:26:04 +0000 Subject: [PATCH] Update '.drone.yml' --- .drone.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 884d4c4..bd8fe34 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,13 +4,13 @@ name: default steps: - name: install dependencies - image: yarnpkg/node-yarn + image: node commands: - - yarn install - - cd server && yarn install - - cd client && yarn install + - npm install + - cd server && npm install + - cd client && npm install - name: back-end test - image: yarnpkg/node-yarn + image: node commands: - - cd server && yarn test \ No newline at end of file + - cd server && npm test \ No newline at end of file