Web/Jenkinsfile
Ell ccdf68e60a
Some checks failed
Web/pipeline/head There was a failure building this commit
don't use env
2021-03-17 21:07:25 +01:00

25 lines
426 B
Groovy

pipeline {
agent any
stages {
stage('Pull') {
when {
branch 'master'
}
steps {
sh '''cd /var/www/ellpeck
git checkout ${GIT_COMMIT}'''
}
}
stage('Node') {
when {
branch 'master'
}
steps {
sh '''cd /var/www/ellpeck/node
npm install
node blog.js
node rss.js'''
}
}
}
}