Improved Jenkinsfile

This commit is contained in:
Artur Nowakowski 2019-11-30 22:42:20 +01:00
parent 6552b238cc
commit 33f264869d
1 changed files with 4 additions and 5 deletions

1
Jenkinsfile vendored
View File

@ -21,7 +21,6 @@ node {
stage("Frontend: Build") {
docker.image('circleci/node:10').inside{
withEnv([
'npm_config_cache=npm-cache',
'HOME=.',
]) { sh 'npm install && npm run build' }
}