diff options
| author | 2026-01-15 12:47:59 +0800 | |
|---|---|---|
| committer | 2026-01-15 12:47:59 +0800 | |
| commit | 6d851986b58480c13599a60b61f58aa42a2e373e (patch) | |
| tree | f6ace56f36cf0b4678b7c9fbe737443c366e3fbf | |
| parent | 18111ef323a81e399e3b907c9046170afcb8e0eb (diff) | |
| parent | b5f1e670d04801216f85bedf095b693f9beb20e8 (diff) | |
| download | DropOut-6d851986b58480c13599a60b61f58aa42a2e373e.tar.gz DropOut-6d851986b58480c13599a60b61f58aa42a2e373e.zip | |
Merge pull request #27 from NtskwK/ci/ui
| -rw-r--r-- | .github/workflows/ui_check.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/ui_check.yml b/.github/workflows/ui_check.yml new file mode 100644 index 0000000..e05f54b --- /dev/null +++ b/.github/workflows/ui_check.yml @@ -0,0 +1,34 @@ +name: UI Checker + +on: + push: + paths: + - "ui/**" + - ".github/workflows/ui_check.yml" + pull_request: + branches: ["main", "master", "dev"] + workflow_dispatch: + +jobs: + check-ui: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 9 + + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: "pnpm" + cache-dependency-path: "ui/pnpm-lock.yaml" + + - run: pnpm install + working-directory: ui + + - run: pnpm check + working-directory: ui |