Skip to content

chore: RSC 対応テストから漏れているコンポーネントを追加 #13496

chore: RSC 対応テストから漏れているコンポーネントを追加

chore: RSC 対応テストから漏れているコンポーネントを追加 #13496

Workflow file for this run

name: e2e
on:
pull_request:
branches:
- master
pull_request_review:
types: [submitted]
jobs:
e2e-win-matrix:
if: ${{ (((github.event_name != 'pull_request_review') && !(startsWith(github.event.pull_request.head.ref, 'merge-release-'))) || (github.event_name == 'pull_request_review') && (startsWith(github.event.pull_request.head.ref, 'merge-release-'))) }}
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 }}