Add missing package installation step for backend
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-02-01 12:21:55 +01:00
parent 5673068e1a
commit 2c73dda857

View File

@@ -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: