Use shell command

This commit is contained in:
Spencer Pincott
2022-08-11 21:35:36 -04:00
parent 804bccdc18
commit dd78efcec6

4
Jenkinsfile vendored
View File

@@ -4,7 +4,7 @@ node {
} }
stage ("Dependencies") { stage ("Dependencies") {
npm ci sh "npm ci"
} }
stage ("Build Gatsby") { stage ("Build Gatsby") {
@@ -18,7 +18,7 @@ node {
GATSBY_APP_ID = "1:299522647169:web:fc74af44747fd7cef79980" GATSBY_APP_ID = "1:299522647169:web:fc74af44747fd7cef79980"
} }
steps { steps {
npm run build sh "npm run build"
} }
} }