Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
Add Jenkins Getting Started Script for Node.js/Javascript
Browse files Browse the repository at this point in the history
  • Loading branch information
pruthvi committed Oct 16, 2018
1 parent 46a3404 commit 93e3260
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Jenkins/Node.js/Jenkinsfile
@@ -0,0 +1,12 @@
//Simple Jenkins pipeline in Node.js/Javascript
//This is a declarative pipeline
pipeline {
agent { docker { image 'node:6.3' } }
stages {
stage('build') {
steps {
sh 'npm --version'
}
}
}
}

0 comments on commit 93e3260

Please sign in to comment.