Web/Jenkinsfile
Ell ec308fc050
Some checks failed
Web/pipeline/head There was a failure building this commit
use full path?
2021-03-17 19:29:05 +01:00

21 lines
332 B
Groovy

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