Skip to content

Commit

Permalink
Jenkins multibranch pipeline experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
c835722 committed Sep 22, 2016
1 parent e084839 commit 785b8f8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
node {
// uncomment these 2 lines and edit the name 'node-4.4.5' according to what you choose in configuration
def nodeHome = tool name: 'nodejs-latest', type: 'jenkins.plugins.nodejs.tools.NodeJSInstallation'
env.PATH = "${nodeHome}/bin:${env.PATH}"

stage 'check environment'
sh "node -v"
sh "npm -v"

stage 'Checkout'
// Get some code from a GitHub repository
git credentialsId: '7cd2b0e3-0594-4022-8860-45c20c2b77dd', url: 'https://github.com/c835722/uakari'

stage 'Build'
sh "npm install"

stage 'Test'
sh "npm test"
}

0 comments on commit 785b8f8

Please sign in to comment.