refs #6681 try fix jenkins
gitea/salix-front/pipeline/pr-dev This commit looks good Details

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 = "" NODE_ENV = ""
} }
steps { steps {
nodejs('node-v20') { nodejs('node-v18') {
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-v20') { nodejs('node-v18') {
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-v20') { nodejs('node-v18') {
sh 'quasar build' sh 'quasar build'
} }
dockerBuild() dockerBuild()