Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(repo): Add next v13 variant to e2e tests #3431

Merged
merged 11 commits into from
May 29, 2024
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,15 @@ jobs:

strategy:
matrix:
test-name: ['generic', 'nextjs', 'express', 'quickstart', 'ap-flows']
test-name: ['generic', 'express', 'quickstart', 'ap-flows']
test-project: ['chrome']
include:
- test-name: 'nextjs'
test-project: 'chrome'
next-version: '13'
- test-name: 'nextjs'
test-project: 'chrome'
next-version: '14'

steps:
- name: Checkout Repo
Expand Down Expand Up @@ -165,6 +172,7 @@ jobs:
- name: Run Integration Tests
run: npx turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only -- --project=${{ matrix.test-project }}
env:
E2E_NEXTJS_VERSION: ${{ matrix.next-version }}
E2E_APP_CLERK_JS_DIR: ${{runner.temp}}
E2E_CLERK_VERSION: 'latest'
INTEGRATION_INSTANCE_KEYS: ${{ secrets.INTEGRATION_INSTANCE_KEYS }}
Expand Down
Loading