Create frontend.yml
This commit is contained in:
parent
aaca794621
commit
9bbd7f12b8
1 changed files with 14 additions and 0 deletions
14
.github/workflows/frontend.yml
vendored
Normal file
14
.github/workflows/frontend.yml
vendored
Normal 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
|
Loading…
Reference in a new issue