feature/jenkins-ci #1

Merged
cameron merged 7 commits from feature/jenkins-ci into master 2020-04-18 17:33:39 +00:00
Showing only changes of commit d19d96a7fd - Show all commits

6
Jenkinsfile vendored
View File

@@ -1,9 +1,13 @@
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 'npm --version'
sh 'ng build --prod'
}
}
}