Skip to content

Commit 66aae0c

Browse files
committed
wip
1 parent bb5e045 commit 66aae0c

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.github/workflows/nightly-checks.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
OUTPUT_FILE="${{runner.temp}}/test-output.log"
6767
# Only run Typedoc tests for one matrix version
6868
if [ "${{ matrix.test-name }}" == "nextjs" ]; then
69-
E2E_APP_ID=quickstart.next.appRouter pnpm test:integration:base --grep @quickstart 2>&1 | tee "$OUTPUT_FILE"
69+
E2E_DEBUG=1 E2E_APP_ID=quickstart.next.appRouter pnpm test:integration:base --grep @quickstart 2>&1 | tee "$OUTPUT_FILE"
7070
else
71-
pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only 2>&1 | tee "$OUTPUT_FILE"
71+
E2E_DEBUG=1 pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only 2>&1 | tee "$OUTPUT_FILE"
7272
fi
7373
echo "exit_code=${PIPESTATUS[0]}" >> $GITHUB_OUTPUT
7474
env:
@@ -81,6 +81,21 @@ jobs:
8181
INTEGRATION_INSTANCE_KEYS: ${{ secrets.INTEGRATION_INSTANCE_KEYS }}
8282
MAILSAC_API_KEY: ${{ secrets.MAILSAC_API_KEY }}
8383

84+
- name: Run Integration Tests
85+
id: integration_tests2
86+
continue-on-error: true
87+
run: |
88+
E2E_DEBUG=1 pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only 2>&1 | tee "$OUTPUT_FILE"
89+
env:
90+
E2E_APP_CLERK_JS_DIR: ${{runner.temp}}
91+
E2E_CLERK_VERSION: 'latest'
92+
E2E_NEXTJS_VERSION: 'canary'
93+
E2E_NPM_FORCE: 'true'
94+
E2E_REACT_DOM_VERSION: '19.1.0'
95+
E2E_REACT_VERSION: '19.1.0'
96+
INTEGRATION_INSTANCE_KEYS: ${{ secrets.INTEGRATION_INSTANCE_KEYS }}
97+
MAILSAC_API_KEY: ${{ secrets.MAILSAC_API_KEY }}
98+
8499
# Upload test artifacts if tests failed
85100
- name: Upload Test Artifacts
86101
if: steps.integration_tests.outputs.exit_code != '0'

0 commit comments

Comments
 (0)