Skip to content

Commit

Permalink
Merge pull request #6 from stivenquirozc/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
stivenquirozc authored Oct 22, 2021
2 parents effa080 + 52e2a7f commit f65dfa3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
stage('npm-build') {
agent {
docker {
image 'node:7.4'
}
}

steps {
echo "Branch is ${env.BRANCH_NAME}..."

withNPM(npmrcConfig:'my-custom-npmrc') {
echo "Performing npm build..."
sh 'npm install'
}
}
}

0 comments on commit f65dfa3

Please sign in to comment.