feat: Select自动切换方向支持小程序、优化第一次切方向时滑入方向不对问题 #17
This file contains 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: UI Test | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: '9' | |
- name: pnpm install | |
run: | | |
pnpm install | |
- name: pnpm run ui:test | |
run: | | |
pnpm run ui:test | |
- name: upload test result | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
path: backstop_data |