From a8de9af2828fb9ecbe1b52a5b066ecb15ff5c23f Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Fri, 28 Dec 2018 15:55:35 +0300 Subject: [PATCH] rename test --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4ed224a..dbda06e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,18 @@ image: node:10 stages: - - test + - test-backend cache: paths: - node_modules/ - client/node_modules -test: +test-backend: stage: test services: - mongo:4 script: - npm i npm@latest -g - - npm i && cd client && npm i + - npm i - npm test