Update Jenkinsfile.groovy

This commit is contained in:
fernando 2024-10-04 23:56:19 +00:00
parent c85b598e59
commit feff7eb3e3

View File

@ -12,12 +12,12 @@ pipeline {
}
stage('Install dependencies') {
steps {
sh 'pnpm i'
sh 'npm i'
}
}
stage('Buid') {
steps {
sh 'pnpm build'
sh 'npm build'
}
}
}