From f51367b1028c3f8ca2e90153b2686a32ee15373d Mon Sep 17 00:00:00 2001
From: Albin Henriksson <albhe428@student.liu.se>
Date: Tue, 16 Feb 2021 15:49:37 +0100
Subject: [PATCH] #2: added client prefix to stages in client yml file

---
 .gitlab/client.gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab/client.gitlab-ci.yml b/.gitlab/client.gitlab-ci.yml
index 81e0f1e1..2881ef9d 100644
--- a/.gitlab/client.gitlab-ci.yml
+++ b/.gitlab/client.gitlab-ci.yml
@@ -1,7 +1,7 @@
 image: node:10
 
 install:
-  stage: install
+  stage: client-install
   script:
     - cd client
     - npm install
@@ -14,7 +14,7 @@ install:
       - client/node_modules/
 
 linting:
-  stage: test
+  stage: client-test
   script:
     - cd client
     - npm run lint
@@ -22,7 +22,7 @@ linting:
     - install
 
 test:unit:
-  stage: test
+  stage: client-test
   script:
     - cd client
     - npm run test:coverage
-- 
GitLab