From 5af6c35b246f75227840d152cadd4fe6e3f6791d Mon Sep 17 00:00:00 2001 From: Marco Zeisler Date: Tue, 11 May 2021 23:57:56 +0200 Subject: [PATCH] fix nodemodules build; --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3b47782..0f4ccfe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,10 +28,10 @@ build_fe: cache: key: $CI_COMMIT_REF_SLUG-$CI_PROJECT_DIR paths: - - node_modules/ - only: - changes: - - frontend/package-lock.json + - frontend/node_modules/ +# only: +# changes: +# - frontend/package-lock.json extends: - .build @@ -68,7 +68,7 @@ lint_fe: cache: key: $CI_COMMIT_REF_SLUG-$CI_PROJECT_DIR paths: - - node_modules/ + - frontend/node_modules/ policy: pull #lint_be: @@ -93,7 +93,7 @@ test_fe: cache: key: $CI_COMMIT_REF_SLUG-$CI_PROJECT_DIR paths: - - node_modules/ + - frontend/node_modules/ policy: pull extends: - .test