Missing steps block

This commit is contained in:
Cameron Cordes
2020-04-18 09:34:32 -04:00
parent 2841be7a51
commit 127cbb2635

6
Jenkinsfile vendored
View File

@@ -2,8 +2,10 @@ pipeline {
agent { docker { image 'node:13.10-alpine' } } agent { docker { image 'node:13.10-alpine' } }
stages { stages {
stage('setup') { stage('setup') {
sh 'npm install' steps {
sh 'export PATH=$PATH:node_modules/.bin' sh 'npm install'
sh 'set PATH=$PATH:$(pwd)/node_modules/.bin'
}
} }
stage('build') { stage('build') {
steps { steps {