Add missing quotes
Some checks failed
Core Repos/Homepage/pipeline/head There was a failure building this commit

This commit is contained in:
Cameron Cordes
2020-04-18 09:32:11 -04:00
parent d19d96a7fd
commit 2841be7a51

4
Jenkinsfile vendored
View File

@@ -2,8 +2,8 @@ pipeline {
agent { docker { image 'node:13.10-alpine' } } agent { docker { image 'node:13.10-alpine' } }
stages { stages {
stage('setup') { stage('setup') {
sh npm install sh 'npm install'
sh export PATH=$PATH:node_modules/.bin sh 'export PATH=$PATH:node_modules/.bin'
} }
stage('build') { stage('build') {
steps { steps {