From eafe43b316c5b272f85a6acaa4d1aafc20ea15f2 Mon Sep 17 00:00:00 2001 From: egelhaus <156946629+egelhaus@users.noreply.github.com> Date: Mon, 10 Mar 2025 09:23:35 +0000 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ebe9c729..660a060f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" } } }