From e20d1cdb5ec5a999307d53553d82be04baa85b3a Mon Sep 17 00:00:00 2001
From: Dominik Hebeler <dominik@hebeler.club>
Date: Wed, 1 Mar 2023 10:15:37 +0100
Subject: [PATCH] fixed directories

---
 .gitlab-ci.yml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5e6571e..57ea6ff 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:
-- 
GitLab