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.

21 lines
386 B
Plaintext

pipeline {
agent any
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'
}
}
}
}