diff options
| -rw-r--r-- | .github/workflows/ui_check.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/ui_check.yml b/.github/workflows/ui_check.yml new file mode 100644 index 0000000..d851518 --- /dev/null +++ b/.github/workflows/ui_check.yml @@ -0,0 +1,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 |