Update Jenkinsfile
This commit is contained in:
parent
197d50c8b7
commit
69a938b3b8
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue