aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/ui_check.yml
blob: d8515180fd2d58293deb3229a67d626eaa394cb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: UI Checker

on:
  push:
    paths:
      - "ui/**"
      - ".github/workflows/ui_check.yml"
  pull_request:
    branches: ["main"]
  workflow_dispatch:

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          run_install: true
          cache: true

      - run: pnpm check
        working-directory: ui