parent
602d74eadb
commit
02db6bd65b
@ -1,18 +1,20 @@
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
stage('Stylecheck') {
|
||||
stages {
|
||||
stage('Stylecheck') {
|
||||
steps {
|
||||
echo 'Checking Style...'
|
||||
sh 'npm i'
|
||||
sh 'npm i tslint --dev'
|
||||
sh 'tslint src/**/*.ts'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Building...'
|
||||
sh 'ng build --prod'
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Building...'
|
||||
sh 'ng build --prod'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue