Merge branch 'master' into feature/docker-support

This commit is contained in:
Pengwius 2021-04-07 11:01:19 +02:00
commit b6500fffb5
2 changed files with 12 additions and 0 deletions

12
.github/workflows/frontend.yml vendored Normal file
View file

@ -0,0 +1,12 @@
name: Frontend
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install npm
run: npm install --prefix frontend
- name: Build app
run: npm run dev --prefix frontend