diff --git a/Jenkinsfile b/Jenkinsfile index 57c10a0..bee0a9a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,6 +6,14 @@ pipeline { } stages { + stage('Setup Node.js') { + steps { + nodejs(nodeJSInstallationName: 'NodeJS 20') { + sh 'node -v' + } + } + } + stage('Install Dependencies') { steps { sh 'npm ci'