diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 0000000..64a44f9 --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,15 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + + echo 'yarn ....' + nodejs('node_version18'){ + sh 'yarn install' + } + } + } + + } +}