Update '.drone.yml'

pull/7/head
Sander Vocke 5 years ago
parent e8aff9baa8
commit a569b1c7c5
  1. 12
      .drone.yml

@ -4,13 +4,13 @@ name: default
steps: steps:
- name: install dependencies - name: install dependencies
image: yarnpkg/node-yarn image: node
commands: commands:
- yarn install - npm install
- cd server && yarn install - cd server && npm install
- cd client && yarn install - cd client && npm install
- name: back-end test - name: back-end test
image: yarnpkg/node-yarn image: node
commands: commands:
- cd server && yarn test - cd server && npm test
Loading…
Cancel
Save