2021-04-07 10:52:09 +02:00
|
|
|
name: Frontend
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install npm
|
2021-04-07 10:56:17 +02:00
|
|
|
run: npm install --prefix frontend
|
2021-04-07 10:52:09 +02:00
|
|
|
- name: Build app
|
2021-04-08 20:34:24 +02:00
|
|
|
run: npm run build --prefix frontend
|