fix: AccordionPanel 開閉時にコンソールエラーが発生する問題を修正 #12782
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 }} |