Skip to content

Commit 8226257

Browse files
committed
ci(jenkins): npm run ci => npm run lint
npm run cov (included in npm run ci) needs PostgreSQL, we haven't set up a test db for running ci in Jenkins, so only running lint.
1 parent 51bdfc0 commit 8226257

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: Jenkinsfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ node {
2626
checkout scm
2727
}
2828

29-
stage('NPM run ci(lint && cov)') {
29+
stage('NPM run lint') {
3030
docker.image('node:carbon').inside {
3131
sh 'npm install'
32-
sh 'npm run ci'
32+
sh 'npm run lint'
3333
}
3434
}
3535

0 commit comments

Comments
 (0)