Jenkins config

- fixed stage declaration
master
Trivernis 5 years ago
parent 602d74eadb
commit 02db6bd65b

2
Jenkinsfile vendored

@ -1,6 +1,7 @@
pipeline { pipeline {
agent any agent any
stages {
stage('Stylecheck') { stage('Stylecheck') {
steps { steps {
echo 'Checking Style...' echo 'Checking Style...'
@ -15,4 +16,5 @@ pipeline {
sh 'ng build --prod' sh 'ng build --prod'
} }
} }
}
} }

Loading…
Cancel
Save