Olaf Bohlen
2023-02-09 64472544a9b3b0a808a9bd50fb77b8ea752801d8
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
35
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 "Deploy" stage here
 
    stage("Deploy") {
        steps {
        sh '''
                    oc project olbohlen-greetings
                    oc start-build greeting-service --follow --wait
                   '''
        }
    }
    }
}