You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|