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

17 lines
306 B
YAML
Raw Normal View History

2022-05-12 15:21:46 -07:00
name: Build web app
on:
push:
paths:
- web/**
2020-11-13 10:07:37 -08:00
jobs:
run:
name: npm run build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
2020-11-13 10:07:37 -08:00
- name: Install dependencies
run: cd web && npm install --include=dev --force && npm run build