chore: RSC対応コンポーネント・非対応コンポーネントを機会的に洗い出して担保できる仕組みを導入する #13367
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 | |
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 }} |