Merge branch 'master' into feature/docker-support
This commit is contained in:
commit
b6500fffb5
2 changed files with 12 additions and 0 deletions
12
.github/workflows/frontend.yml
vendored
Normal file
12
.github/workflows/frontend.yml
vendored
Normal 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
|
Loading…
Reference in a new issue