diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5e6571e5da3c823addb9c674d0b15814529efc9e..57ea6ff7333dc3ce5883fcce150f67a4f87a5cc4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,16 +16,17 @@ npm_deps:
   stage: build
   image: ${NODE_IMAGE}
   variables:
-    npm_config_cache: /app/.npm
+    npm_config_cache: ${CI_BUILDS_DIR}/pass/.npm
   cache:
     key: npm-cache
     paths:
-      - .npm
+      - pass/.npm
   artifacts:
     public: false
     paths:
-      - node_modules
+      - pass/node_modules
   script:
+    - cd pass
     - npm i
 
 build: