Olaf Bohlen
2023-02-09 f6eb66dc4a934b5f84522727518058b361b02a36
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
pipeline{
    agent{
        label "nodejs"
    }
    stages{
        stage("Install dependencies"){
            steps{
                sh "npm ci"
            }
        }
 
        stage("Check Style"){
            steps{
                sh "npm run lint"
            }
        }
 
        stage("Test"){
            steps{
                sh "npm test"
            }
        }
 
        // Add the Release stage here
    stage("Release") {
        steps {
        sh '''
                    oc project olbohlen-greetings
                    oc start-build greeting-console --follow --wait
                   '''
        }
    }
    }
}