Skip to content

Commit 7e3769b

Browse files
committed
feat
1 parent 2f26e63 commit 7e3769b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Jenkinsfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,19 @@ pipeline {
55
args '-p 3000:3000'
66
}
77
}
8+
environment {
9+
CI = 'true'
10+
}
811
stages {
912
stage('Build') {
1013
steps {
1114
sh 'npm install'
1215
}
16+
stage('Test') {
17+
steps {
18+
sh './jenkins/scripts/test.sh'
19+
}
20+
}
1321
}
1422
}
1523
}

0 commit comments

Comments
 (0)