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