diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 000000000..c54137d9f --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,9 @@ +node { + stage('Checkout SCM'){ + git branch : 'master', url: 'https://github.com/popcornapps/apollo-web.git' + } + stage('Start Node'){ + sh "npm install" + sh "npm start --host 0.0.0.0" + } +}