diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..c6de939 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,16 @@ +pipeline { + agent { + node { + label 'build' + } + + } + stages { + stage('yarn') { + steps { + sh 'yarn' + } + } + + } +} \ No newline at end of file