diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca677be0b267464530c2e029ba60ecd3f9d503a0..7551781b9cd1850da78ddced3a96c5dfb15afffb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,18 +11,18 @@ install: - npm install - cd server && npm install && cd .. - pwd - - cd client && npm install + - cd ../client && npm install build: stage: build script: - cd server && npm run build && cd .. - pwd - - cd client && npm build + - cd ../client && npm build test: stage: test script: - cd server && npm test && cd .. - pwd - - cd client && npm test \ No newline at end of file + - cd ../client && npm test \ No newline at end of file