owncast/.github/workflows/build-next.yml

17 lines
284 B
YAML
Raw Normal View History

2022-05-13 01:21:46 +03:00
name: Build web app
on:
push:
paths:
- web/**
2020-11-13 21:07:37 +03:00
jobs:
run:
name: npm run build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
2020-11-13 21:07:37 +03:00
- name: Install dependencies
run: cd web && npm install && npm run build