refs #6681 try fix jenkins

This commit is contained in:
Alex Moreno 2024-01-29 08:38:55 +01:00
parent 30ff6e52cc
commit 70e912fc92
1 changed files with 4 additions and 4 deletions

6
Jenkinsfile vendored
View File

@ -31,7 +31,7 @@ pipeline {
NODE_ENV = "" NODE_ENV = ""
} }
steps { steps {
nodejs('node-v18') { nodejs('node-v20') {
sh 'npm install --no-audit --prefer-offline' sh 'npm install --no-audit --prefer-offline'
} }
} }
@ -47,7 +47,7 @@ pipeline {
parallel { parallel {
stage('Frontend') { stage('Frontend') {
steps { steps {
nodejs('node-v18') { nodejs('node-v20') {
sh 'npm run test:unit:ci' sh 'npm run test:unit:ci'
} }
} }
@ -63,7 +63,7 @@ pipeline {
CREDENTIALS = credentials('docker-registry') CREDENTIALS = credentials('docker-registry')
} }
steps { steps {
nodejs('node-v18') { nodejs('node-v20') {
sh 'quasar build' sh 'quasar build'
} }
dockerBuild() dockerBuild()