mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Run linting on CI
This commit is contained in:
parent
325f91ed2e
commit
cba07f79ee
1 changed files with 12 additions and 0 deletions
12
services/web/Jenkinsfile
vendored
12
services/web/Jenkinsfile
vendored
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue