From c85b598e597988c4366b74123d0ae385bc07e4bf Mon Sep 17 00:00:00 2001 From: fernando Date: Fri, 4 Oct 2024 22:21:01 +0000 Subject: [PATCH] Update Jenkinsfile.groovy --- Jenkinsfile.groovy | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index 7d0af26..a4ff150 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -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'