1
0
Fork 0

add build to test

This commit is contained in:
Lukas Winkler 2018-05-29 15:59:09 +02:00
parent 3ee8ac44f4
commit 95d783f6a6

10
Jenkinsfile vendored
View file

@ -28,6 +28,16 @@ pipeline {
sh 'yarn run htmllint'
}
}
stage('build') {
steps {
sh 'yarn run build'
}
}
}
}
stage('Artefacts') {
steps {
archiveArtifacts 'web-ext-artifacts/'
}
}
}