mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
Verify the admin web app builds
This commit is contained in:
parent
e3c0265469
commit
a0bfe6ac9a
1 changed files with 18 additions and 0 deletions
18
web/.github/workflows/build-next.yml
vendored
Normal file
18
web/.github/workflows/build-next.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Build admin app
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches: master
|
||||
|
||||
jobs:
|
||||
run:
|
||||
name: npm run build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install && npm run build
|
Loading…
Reference in a new issue