-
Notifications
You must be signed in to change notification settings - Fork 5
/
Jenkinsfile
52 lines (50 loc) · 1.28 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env groovy
@Library('kanolib') _
pipeline {
agent {
label 'ubuntu_18.04_with_docker'
}
post {
always {
step([$class: 'CheckStylePublisher', pattern: 'eslint.xml'])
}
regression {
script {
email.notifyCulprits()
}
}
fixed {
script {
email.notifyCulprits()
}
}
}
stages {
stage('checkout') {
steps {
checkout scm
}
}
stage('install dependencies') {
steps {
script {
withCredentials([string(credentialsId: 'npm-read-only', variable: 'NPM_TOKEN')]) {
sh "echo \"//registry.npmjs.org/:_authToken=${NPM_TOKEN}\" > .npmrc"
docker.image('node:10-alpine').inside {
sh "yarn --production=false"
}
}
}
}
}
stage('checkstyle') {
steps {
script {
docker.image('node:10-alpine').inside {
sh "yarn checkstyle-ci || exit 0"
}
}
}
}
}
}