1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
matomo-injector/Jenkinsfile
Lukas Winkler ffae49a873
Jenkins (#1)
* add jenkins

* jslint -> eshint

* eshint -> eslint
2018-05-29 15:47:29 +02:00

34 lines
No EOL
558 B
Groovy

pipeline {
agent {
docker {
image 'node'
}
}
stages {
stage('yarn install') {
steps {
sh 'yarn install --pure-lockfile --ignore-engines'
}
}
stage('Tests') {
parallel {
stage('eslint') {
steps {
sh 'yarn run eslint'
}
}
stage('webext_lint') {
steps {
sh 'yarn run webext_lint'
}
}
stage('htmllint') {
steps {
sh 'yarn run htmllint'
}
}
}
}
}
}