aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorNtskwK <natsukawa247@outlook.com>2026-01-15 09:56:10 +0800
committerNtskwK <natsukawa247@outlook.com>2026-01-15 09:56:10 +0800
commite2d4e73457294c8539d97a2de1835179114276b7 (patch)
tree2ebf0ec555ca57e18aac9e596666c5affa876064 /.github
parent18111ef323a81e399e3b907c9046170afcb8e0eb (diff)
downloadDropOut-e2d4e73457294c8539d97a2de1835179114276b7.tar.gz
DropOut-e2d4e73457294c8539d97a2de1835179114276b7.zip
ci(ui): add UI checker workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ui_check.yml22
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