Delete whats left and build npm

This commit is contained in:
kargor8 2020-12-10 17:18:02 +01:00
parent c96dd4f567
commit 8530f3e940
1 changed files with 8 additions and 2 deletions

10
Jenkinsfile vendored
View File

@ -13,14 +13,20 @@ pipeline {
dir('SessionCompanion') {
sh "echo $USER"
withEnv(["HOME=${env.WORKSPACE}"]){
dir ('SessionCompanion/ClientApp') {
sh 'npm install'
}
sh 'dotnet build'
}
}
}
}
}
stage('Clarify') {
stage('Clear') {
steps {
sh "echo Dziala"
withEnv(["HOME=${env.WORKSPACE}"]){
sh 'rm -rf .local'
}
}
}
}