Update Jenkinsfile.groovy

This commit is contained in:
fernando 2024-10-04 22:21:01 +00:00
parent 68c175bd8f
commit c85b598e59

View File

@ -1,10 +1,15 @@
pipeline {
agent {
docker {
image 'gplane/pnpm:9.11.0'
image 'node:22'
}
}
stages {
stage('Install pnpm') {
steps {
sh 'npm i -g pnpm'
}
}
stage('Install dependencies') {
steps {
sh 'pnpm i'