fix:修复sql 详情页返回到列表页,数据加载时机问题 #171
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint UI with eslint and prettier | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - "*_release" | |
| paths: | |
| - "ui/**/*" | |
| jobs: | |
| ui-lint: | |
| name: ui-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| cache: "yarn" | |
| cache-dependency-path: ui/yarn.lock | |
| - name: Install dependencies | |
| run: cd ui && yarn install --frozen-lockfile | |
| - name: Check code style | |
| run: cd ui && yarn check-style | |
| - name: Lint | |
| run: cd ui && yarn lint | |
| - name: build | |
| run: cd ui && yarn build |