Files
dashboard/jenkins/buildFrontend.sh
Hawk 0c540cf903
All checks were successful
SimcoDash/simcompanies-dashboard/pipeline/head This commit looks good
test10
2020-05-13 21:41:04 +02:00

14 lines
231 B
Bash

#!/usr/bin/env sh
cd ./Frontend
if test "$BRANCH_NAME" = "edit-jenkinsfile"
then
echo 'Install neccessary Packages'
yarn install
echo 'Build Frontend for Production'
yarn run build
else
echo "$BRANCH_NAME"
fi