Some checks failed
Core Repos/Homepage/pipeline/head There was a failure building this commit
15 lines
302 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|