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.
34 lines
962 B
Groovy
34 lines
962 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Dependencies') {
|
|
steps {
|
|
echo 'Installing Dependencies...'
|
|
nodejs(nodeJSInstallationName: 'Node 12.x') {
|
|
sh 'npm i @angular/cli'
|
|
sh 'npm i'
|
|
}
|
|
}
|
|
}
|
|
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 'ng build --prod'
|
|
}
|
|
sh '/bin/tar -zcvf greenvironment-frontend.tar.gz dist'
|
|
archiveArtifacts artifacts: 'greenvironment-frontend.tar.gz', fingerprint: true
|
|
}
|
|
}
|
|
}
|
|
}
|