From e3dfe8276f209a98943e4404baed252acb10b363 Mon Sep 17 00:00:00 2001 From: Vanditha04 <84911664+Vanditha04@users.noreply.github.com> Date: Mon, 27 Sep 2021 10:56:26 +0530 Subject: [PATCH] adding jenkins file --- Jenkinsfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Jenkinsfile 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 ' + } + } + } + } +}