Update Jenkinsfile

This commit is contained in:
egelhaus 2025-03-10 09:23:35 +00:00 committed by GitHub
parent e4f7a34ab1
commit eafe43b316
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -12,11 +12,11 @@ pipeline {
}
}
stage('Setup Node.js') {
stage('Chechout Node.js and npm') {
steps {
script {
sh "curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash -"
sh "sudo apt-get install -y nodejs"
sh "node -v"
sh "npm -v"
}
}
}