Files
suwayomi-material-you-webui/.github/workflows/build_pull_request.yml
schroda 57c8ee2cdc Add build step to pr workflow (#259)
Prevents PRs that break building from getting merged
2023-03-11 21:42:07 +03:30

21 lines
346 B
YAML

name: CI Pull Request
on:
pull_request:
jobs:
build:
name: ci-pull-request
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run ESLint
run: yarn lint
- name: Run TSC
run: yarn tsc
- name: Build app
run: yarn build