blob: 56a57e4ef4a10fc0945e013da7963e2808aa1a86 [file] [log] [blame]
pipeline {
agent { docker { image 'node:14-alpine' } }
stages {
stage('build') {
steps {
sh 'npm --version'
sh 'chmod u+x build-publish.sh'
sh './build-publish.sh'
}
}
}
}