gradio/.github/workflows/ui.yml
pngwn 9c7ebc8659
add frontend build to ci as a smoke test (#530)
* add frontend build to ci as a smoke test

* add details about ci and quality checks to readme

* fix readme links

* readme: consistent title casing
2022-02-03 10:54:21 +00:00

36 lines
657 B
YAML

name: gradio-ui
on:
push:
branches:
- "master"
paths:
- "ui/**"
pull_request:
paths:
- "ui/**"
defaults:
run:
working-directory: ./ui
jobs:
check:
name: static checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm i -g pnpm@6
- uses: actions/setup-node@v2
with:
node-version: 16
- name: install dependencies
run: pnpm i --frozen-lockfile
- name: formatting check
run: pnpm format:check
- name: typecheck
run: pnpm ts:check
continue-on-error: true
- name: build
run: pnpm build