Run linting on CI

This commit is contained in:
Alasdair Smith 2018-02-23 11:44:43 +00:00
parent 325f91ed2e
commit cba07f79ee

View file

@ -54,6 +54,18 @@ pipeline {
sh 'node_modules/.bin/grunt version'
}
}
stage('Lint') {
agent {
docker {
image 'node:6.9.5'
reuseNode true
}
}
steps {
sh 'make --no-print-directory lint'
}
}
stage('Unit Test') {
agent {