0
0
Fork 0

refs #6681 try fix jenkins

This commit is contained in:
Alex Moreno 2024-01-29 08:41:38 +01:00
parent 70e912fc92
commit 935211a71f
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

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