Jesse James Isler
b664645c85
Some checks failed
gitea_dndsources/schedulord-frontend/pipeline/head There was a failure building this commit
25 lines
419 B
Groovy
25 lines
419 B
Groovy
pipeline {
|
|
agent any
|
|
tools {
|
|
nodejs "node"
|
|
}
|
|
|
|
stages {
|
|
stage('NPM Install') {
|
|
sh 'npm install'
|
|
}
|
|
|
|
stage('Test') {
|
|
sh 'ng test --progress=false --watch false'
|
|
}
|
|
|
|
stage('Lint') {
|
|
sh 'ng lint'
|
|
}
|
|
|
|
stage('Build') {
|
|
sh 'ng build --prod --aot --sm --progress=false'
|
|
}
|
|
}
|
|
}
|