From f582cbbb040243791d717043a847e73dade3ec31 Mon Sep 17 00:00:00 2001
From: Daniel Rainer <daniel.m.rainer@student.uibk.ac.at>
Date: Sat, 5 Mar 2022 17:44:04 +0100
Subject: [PATCH] Disable maven cache for npm jobs

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 91d186aae..96593b6b6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,6 +24,7 @@ checkstyle:
 
 prettier:
   stage: lint
+  cache: {}
   script:
     - npm install
     - npm run prettier:check
@@ -32,6 +33,7 @@ prettier:
 
 eslint:
   stage: lint
+  cache: {}
   script:
     - npm install
     # eslint exits 0 on warnings, this is a workaround to exit 1 when warnings are present.
@@ -79,6 +81,7 @@ maven-test:
 
 frontend-test:
   stage: test
+  cache: {}
   script:
     - npm install
     - npm test
-- 
GitLab