From c769483f25487d954c7c75f3daa1344b9b27c2f1 Mon Sep 17 00:00:00 2001 From: egelhaus <156946629+egelhaus@users.noreply.github.com> Date: Wed, 9 Apr 2025 17:40:28 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9fb5b6b7..74cab9e0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,14 +12,14 @@ pipeline { cacheValidityDecidingFile: '', excludes: '', includes: '**/*', - path: "./.next/cache" + path: "./.nx/cache" ), arbitraryFileCache( - cacheName: 'NPM', // Added a cache name for better clarity + cacheName: 'NodeJS', // Added a cache name for better clarity cacheValidityDecidingFile: '', excludes: '', includes: '**/*', - path: "~/.npm" // Use the HOME environment variable for home directory + path: "./node_modules" // Use the HOME environment variable for home directory ) ], defaultBranch: 'dev', maxCacheSize: 256000) }