Create frontend.yml

This commit is contained in:
Tomasz F 2021-04-07 10:52:09 +02:00 committed by GitHub
parent aaca794621
commit 9bbd7f12b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

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