Created
July 5, 2017 09:42
-
-
Save mosluce/623aea63876766b620253ff0a55e8adb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| pipeline { | |
| agent { | |
| docker { | |
| image 'node:8.1.0' | |
| args '-u root' | |
| } | |
| } | |
| stages { | |
| stage('Preview') { | |
| steps { | |
| echo 'previewing...' | |
| sh 'pwd' | |
| sh 'ls -al' | |
| } | |
| } | |
| stage('Build') { | |
| steps { | |
| echo 'building...' | |
| sh 'npm install -g yarn' | |
| sh 'yarn install' | |
| } | |
| } | |
| stage('Test') { | |
| steps { | |
| echo 'testing...' | |
| sh 'npm test' | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment