fix: 修复 Dropdown 的触发方式为 hover 时弹出层快速消失的问题(Regression: since 2.0.29)
#1985
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: test | |
| on: | |
| pull_request: | |
| branches: [ dev, master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: init | |
| run: yarn | |
| - name: Component Test | |
| run: yarn test:silent | |
| - name: TypeScript Test | |
| run: yarn build-ts |