Skip to content

Commit 0515329

Browse files
committed
added test stage
1 parent 8201880 commit 0515329

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
@@ -1,10 +1,18 @@
11
pipeline {
22
agent any
3+
environment {
4+
CI = 'true'
5+
}
36
stages {
47
stage('Build') {
58
steps {
69
sh 'npm install'
710
}
811
}
12+
stage('Test') {
13+
steps {
14+
sh './jenkins/scripts/test.sh'
15+
}
16+
}
917
}
1018
}

0 commit comments

Comments
 (0)