Skip to content

Commit fa2ff57

Browse files
committed
Added test stage
1 parent 1192f72 commit fa2ff57

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
}
1316
}
17+
stage('Test') {
18+
steps {
19+
sh './jenkins/scripts/test.sh'
20+
}
21+
}
1422
}
1523
}

0 commit comments

Comments
 (0)