diff --git a/Jenkinsfile b/Jenkinsfile index e185f41..4933da7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,6 +28,16 @@ pipeline { sh 'yarn run htmllint' } } + stage('build') { + steps { + sh 'yarn run build' + } + } + } + } + stage('Artefacts') { + steps { + archiveArtifacts 'web-ext-artifacts/' } } }