fix: OverviewView 初回マウント時に週カードが閉じる不具合を解消 #2652
Workflow file for this run
This file contains hidden or 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: test-ui | |
| on: | |
| - push | |
| jobs: | |
| unit-test: | |
| runs-on: ubuntu-latest | |
| environment: Preview | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| shard: [1/2, 2/2] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Setup Playwright | |
| uses: ./.github/actions/playwright | |
| - name: Run Test | |
| run: | | |
| npx convex dev & | |
| # Convexの起動と環境変数のセットを待つ | |
| sleep 15 | |
| pnpm vitest run --shard=${{ matrix.shard }} --project=ui | |
| kill %1 | |
| env: | |
| CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }} | |
| VITE_CLERK_PUBLISHABLE_KEY: ${{ secrets.VITE_CLERK_PUBLISHABLE_KEY }} | |
| CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }} |