From 2c73dda8577786c95e4cb072a7b894943603eece Mon Sep 17 00:00:00 2001 From: Humenius Date: Mon, 1 Feb 2021 12:21:55 +0100 Subject: [PATCH] Add missing package installation step for backend --- .drone.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.drone.yml b/.drone.yml index 114a36a..265e17e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -166,6 +166,12 @@ steps: from_secret: aws_secret_access_key restore: true + - name: Install packages + image: node + commands: + - cd backend + - npm install + - name: Run unit tests image: node commands: @@ -242,6 +248,12 @@ steps: from_secret: aws_secret_access_key restore: true + - name: Install packages + image: node + commands: + - cd backend + - npm install + - name: Run unit tests image: node commands: