Skip to content

Commit

Permalink
Update Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi2krishna authored Mar 28, 2023
1 parent d481d92 commit 78e66fa
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ pipeline {
steps {
echo 'Building..'
sh 'ls'
sh 'cd webapp'
sh 'npm install'
sh 'npm run build'
//sh 'cd webapp'
dir('webapp') {
sh 'npm install'
sh 'npm run build'
}

}
}
stage('Test') {
Expand Down

0 comments on commit 78e66fa

Please sign in to comment.