wulkanowy-web/.github/workflows/frontend.yml

13 lines
294 B
YAML
Raw Normal View History

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
run: npm run build --prefix frontend