Skip to content
Closed

Scripted #43281

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added Jenkinsfile
  • Loading branch information
unknown committed May 31, 2022
commit fbd88dc2afe619c0d24ec965f0bd97d0d83e5a5d
5 changes: 1 addition & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ node('jdk11-mvn3.6.3') {
git 'https://github.com/bhargavi-vaduguri/nodejs.git'
}
stage('build') {
nodejs('nodejs10.19.0')
sh 'npm install'
}
stage('build') {
nodejs(nodejsinstallationname: 'nodejs10.19.0')
sh 'npm install'
}
stage('archive') {
archive 'target/*.jar'
}
Expand Down