Skip to content

Commit 84b4b09

Browse files
authored
Update Jenkinsfile
1 parent f887521 commit 84b4b09

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Jenkinsfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ pipeline {
44
image 'node:lts-buster-slim'
55
args '-p 3000:3000'
66
}
7+
78
}
89
stages {
10+
stage('Checkout'){
11+
12+
checkout scm
13+
}
914
stage('Build') {
1015
steps {
16+
sh 'npm --version'
17+
sh 'node --version'
1118
sh 'npm install'
1219
}
1320
}

0 commit comments

Comments
 (0)