From 57afaba0f74858cc8b3115cd77829db9e90dea0f Mon Sep 17 00:00:00 2001 From: Tobias Berger Date: Thu, 14 Oct 2021 12:46:07 +0200 Subject: [PATCH] Update '.drone.yml' --- .drone.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.drone.yml b/.drone.yml index c7fa611..ffcba00 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,14 +6,22 @@ type: docker # If yes, deploy to vercel steps: +- name: install + image: node + commands: + - yarn - name: build-game image: node commands: - yarn build:game + depends_on: + - install - name: build-pwa image: node commands: - yarn build:pwa + depends_on: + - install - name: test image: node commands: