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.
30 lines
745 B
Plaintext
30 lines
745 B
Plaintext
5 years ago
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Dependencies') {
|
||
|
steps {
|
||
|
echo 'Installing Dependencies...'
|
||
|
nodejs(nodeJSInstallationName: 'Node 12.x') {
|
||
|
sh 'yarn install'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
stage('Stylecheck') {
|
||
|
steps {
|
||
|
echo 'Checking Style...'
|
||
|
nodejs(nodeJSInstallationName: 'Node 12.x') {
|
||
|
sh 'tslint "src/**/*.ts"'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
stage('Build') {
|
||
|
steps {
|
||
|
echo 'Building...'
|
||
|
nodejs(nodeJSInstallationName: 'Node 12.x') {
|
||
|
sh 'gulp'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|