Separate github action into separete workflow files

This commit is contained in:
Mark Schmitt
2021-01-08 11:33:08 +01:00
parent 9e7257634a
commit 729f017803
4 changed files with 91 additions and 78 deletions

16
.github/workflows/frontend.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
jobs:
frontend:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '15'
- name: build
run: |
cd src-ui/
npm install -g @angular/cli
npm install
ng build --prod