fix(LineClamp): 表示されている行数が最大行数以下のときにTooltipを表示しないように修正 #12845
Workflow file for this run
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: e2e | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
e2e-win-matrix: | |
runs-on: windows-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
browser: [chrome] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: run | |
run: | | |
corepack enable | |
corepack prepare | |
pnpm ui install | |
pnpm ui e2e | |
env: | |
TESTCAFE_BROWSER: ${{ matrix.browser }} |