Add Jenkinsfile for frontend

This commit is contained in:
Marcin Szczepański 2019-11-24 11:39:13 +01:00
parent 7e15ac0bf4
commit ca4a8fb28d
1 changed files with 45 additions and 0 deletions

45
FrontEnd/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,45 @@
pipeline {
agent any
tools {
nodejs 'localNode'
}
stages {
stage('Initialize') {
steps {
echo 'Initialize...'
sh '''
echo "PATH = ${PATH}"
'''
}
}
stage('Install dependencies') {
steps {
echo 'Install dependencies...'
sh '''
cd FrontEnd
npm install -g @angular/cli@1.7.4;
npm install
'''
}
}
stage('Build') {
steps {
echo 'Building...'
sh '''
ng build --prod
'''
}
}
stage('Test') {
steps {
echo 'Testing...'
}
}
stage('Deploy') {
steps {
echo 'Deploying...'
}
}
}
}