Update Jenkinsfile

This commit is contained in:
egelhaus 2025-04-09 16:30:36 +02:00 committed by GitHub
parent 197d50c8b7
commit 69a938b3b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile vendored
View File

@ -5,6 +5,18 @@ pipeline {
NODE_VERSION = '20.17.0'
}
options {
cache(caches: [
arbitraryFileCache(
cacheName: 'NPM',
cacheValidityDecidingFile: '',
excludes: '',
includes: '**/*',
path: '~/.npm'
)
], defaultBranch: 'dev', maxCacheSize: 256000)
}
stages {
stage('Checkout Repository') {
steps {