Files
Homepage/Jenkinsfile
Cameron Cordes d19d96a7fd
Some checks failed
Core Repos/Homepage/pipeline/head There was a failure building this commit
Add more proper setup and build steps
2020-04-18 09:26:52 -04:00

15 lines
302 B
Groovy

pipeline {
agent { docker { image 'node:13.10-alpine' } }
stages {
stage('setup') {
sh npm install
sh export PATH=$PATH:node_modules/.bin
}
stage('build') {
steps {
sh 'ng build --prod'
}
}
}
}