add clean step to build

This commit is contained in:
Jakub Sokołowski 2018-08-15 14:00:20 -04:00
parent f98b4547a4
commit 0be492ea58
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 1 additions and 0 deletions

1
Jenkinsfile vendored
View File

@ -24,6 +24,7 @@ node('linux') {
stage('Build') {
env.APK_URL = params.APK_URL
sh 'npm run clean'
sh 'npm run build'
sh 'du -hsc dist/*'
}