Files
suwayomi-material-you-webui/.github/workflows/build_pull_request.yml
schroda 2047d76ad9 Update workflow actions (#649)
* Update workflow actions

* Fix tsc issues
2024-03-09 00:24:48 +01:00

27 lines
470 B
YAML

name: CI Pull Request
on:
pull_request:
jobs:
build:
name: ci-pull-request
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up NodeJs
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Install modules
run: yarn
- name: Run ESLint
run: yarn lint
- name: Run TSC
run: yarn tsc
- name: Build app
run: yarn build