include dev when building

This commit is contained in:
Tom Butcher 2025-06-01 21:21:14 +01:00
parent 61013c11df
commit f98ab2896b

2
Jenkinsfile vendored
View File

@ -18,7 +18,7 @@ pipeline {
stage('Install Dependencies') { stage('Install Dependencies') {
steps { steps {
nodejs(nodeJSInstallationName: 'Node23') { nodejs(nodeJSInstallationName: 'Node23') {
sh 'npm ci' sh 'npm ci --include=dev'
} }
} }
} }