Skip to content

Commit cd99a74

Browse files
committed
fix
1 parent f730e18 commit cd99a74

7 files changed

Lines changed: 8 additions & 11 deletions

File tree

.github/workflows/chromatic_merged.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup
1818
uses: ./.github/actions/setup
1919
- name: Storybook Build
20-
run: pnpm build-storybook
20+
run: pnpm storybook:build
2121
env:
2222
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }}
2323
NEXT_PUBLIC_CONVEX_URL: ${{ secrets.NEXT_PUBLIC_CONVEX_URL }}

.github/workflows/chromatic_pr_on_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run: |
1818
npx convex dev &
1919
sleep 5
20-
pnpm build-storybook
20+
pnpm storybook:build
2121
kill %1
2222
env:
2323
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }}

.github/workflows/chromatic_pr_on_ready copy.yml renamed to .github/workflows/chromatic_pr_on_ready.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup
1717
uses: ./.github/actions/setup
1818
- name: Storybook Build
19-
run: pnpm build-storybook
19+
run: pnpm storybook:build
2020
env:
2121
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }}
2222
NEXT_PUBLIC_CONVEX_URL: ${{ secrets.NEXT_PUBLIC_CONVEX_URL }}

.github/workflows/playwright.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,11 @@ jobs:
2424
CONVEX_DEPLOYMENT: ${{ secrets.CONVEX_DEPLOYMENT }}
2525
CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}
2626
- name: Run Playwright tests
27-
run: |
28-
npx convex dev &
29-
sleep 5
30-
pnpm e2e
27+
run: pnpm e2e
3128
env:
32-
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
3329
E2E_CLERK_USER: ${{ secrets.E2E_CLERK_USER }}
3430
E2E_CLERK_PASSWORD: ${{ secrets.E2E_CLERK_PASSWORD }}
31+
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
3532
CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}
3633
- uses: actions/upload-artifact@v4
3734
if: ${{ !cancelled() }}

.github/workflows/test-logic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
env:
3030
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
3131
VITE_CLERK_PUBLISHABLE_KEY: ${{ secrets.VITE_CLERK_PUBLISHABLE_KEY }}
32-
CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}
32+
# CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}

.github/workflows/test-ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
env:
2929
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
3030
VITE_CLERK_PUBLISHABLE_KEY: ${{ secrets.VITE_CLERK_PUBLISHABLE_KEY }}
31-
CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}
31+
# CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"[css]": {
3333
"editor.defaultFormatter": "biomejs.biome"
3434
},
35-
"cSpell.words": ["storycap", "testrun", "turbopack", "unzipper"],
35+
"cSpell.words": ["storycap", "testrun", "turbopack", "unzipper", "VITE", "vitest"],
3636
"editor.codeActionsOnSave": {
3737
"source.fixAll.biome": "explicit",
3838
"source.addMissingImports.ts": "explicit",

0 commit comments

Comments
 (0)