Web/Jenkinsfile
Ell 95d15e026a
Some checks failed
Web/pipeline/head There was a failure building this commit
try using customWorkspace for the jenkins build
2021-03-17 19:21:46 +01:00

20 lines
298 B
Groovy

pipeline {
agent {
node {
customWorkspace '/var/www/ellpeck'
}
}
stages {
stage('Node') {
when {
branch 'master'
}
steps {
sh '''cd node
npm install
node blog.js
node rss.js'''
}
}
}
}