We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fcbdcc commit b24c405Copy full SHA for b24c405
Jenkinsfile
@@ -0,0 +1,27 @@
1
+pipeline {
2
+ agent {
3
+ label config["label"]
4
+ }
5
+ environment {
6
+ CI = 'true'
7
8
+ stages {
9
+ stage('Build') {
10
+ steps {
11
+ sh 'npm install'
12
13
14
+ stage('Test') {
15
16
+ sh './jenkins/scripts/test.sh'
17
18
19
+ stage('Deliver') {
20
21
+ sh './jenkins/scripts/deliver.sh'
22
+ input message: 'Finished using the web site? (Click "Proceed" to continue)'
23
+ sh './jenkins/scripts/kill.sh'
24
25
26
27
+}
0 commit comments