Skip to content

Commit

Permalink
adding_new_steps_for_pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Rominos7 committed Jan 21, 2024
1 parent f8b4bf2 commit 698c989
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions toolbox/jenkins/jenkins_pr_check
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ pipeline {
timestamps()
}
stages {
stage('Set up node version') {
steps {
echo 'Set up node version'
sh 'nvm use 16'
}
}
stage('Intall node modules') {
steps {
// need also take nvm into consideration
// test comment
echo 'Installing modules...'
sh 'npm install'
sh 'npm i'
}
}
stage('Run test:cover') {
Expand Down

0 comments on commit 698c989

Please sign in to comment.