Skip to content

chore(deps): update dependency @clerk/testing to v1.14.5 #2629

chore(deps): update dependency @clerk/testing to v1.14.5

chore(deps): update dependency @clerk/testing to v1.14.5 #2629

Workflow file for this run

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 }}