diff options
| author | 2026-01-15 09:56:10 +0800 | |
|---|---|---|
| committer | 2026-01-15 09:56:10 +0800 | |
| commit | e2d4e73457294c8539d97a2de1835179114276b7 (patch) | |
| tree | 2ebf0ec555ca57e18aac9e596666c5affa876064 /.github | |
| parent | 18111ef323a81e399e3b907c9046170afcb8e0eb (diff) | |
| download | DropOut-e2d4e73457294c8539d97a2de1835179114276b7.tar.gz DropOut-e2d4e73457294c8539d97a2de1835179114276b7.zip | |
ci(ui): add UI checker workflow
Diffstat (limited to '.github')
| -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 |