fix(Balloon): Safariで影の表示が崩れるバグを修正 (新しいPRのほう) #12623
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 }} |