diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..e9c3264f --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +pipeline { + agent any + + stages { + stage('run frontend') { + steps { + echo 'executing yarn' + nodejs( 'nodejs10.17.0') { + sh 'yarn install' + sh 'yarn build ' + } + } + } + } +}