diff --git a/Jenkinsfile b/Jenkinsfile index 49e2716..2c35290 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' + } } } }