Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

adding jenkins file #164

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -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 '
}
}
}
}
}