diff --git a/.gitlab/client.gitlab-ci.yml b/.gitlab/client.gitlab-ci.yml index 81e0f1e1dca63e66201bd6313cc7a1a907194312..2881ef9d140d32fd0a3d07096f6a942b5a4f4742 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