Files
Homepage/Jenkinsfile
Cameron Cordes 2841be7a51
Some checks failed
Core Repos/Homepage/pipeline/head There was a failure building this commit
Add missing quotes
2020-04-18 09:32:11 -04:00

15 lines
306 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'
}
}
}
}