0
0
Fork 0

refs #6797 fix(jenkins) momentarily use npm

This commit is contained in:
Alex Moreno 2024-02-21 13:36:47 +01:00
parent 4ac9dc3148
commit ed17fa0670
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -62,7 +62,7 @@ pipeline {
NODE_ENV = ""
}
steps {
sh 'pnpm install --prefer-offline'
sh 'npm install --prefer-offline'
}
}
stage('Test') {
@ -73,7 +73,7 @@ pipeline {
NODE_ENV = ""
}
steps {
sh 'pnpm run test:unit:ci'
sh 'npm run test:unit:ci'
}
post {
always {