File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 66
66
OUTPUT_FILE="${{runner.temp}}/test-output.log"
67
67
# Only run Typedoc tests for one matrix version
68
68
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"
70
70
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"
72
72
fi
73
73
echo "exit_code=${PIPESTATUS[0]}" >> $GITHUB_OUTPUT
74
74
env :
81
81
INTEGRATION_INSTANCE_KEYS : ${{ secrets.INTEGRATION_INSTANCE_KEYS }}
82
82
MAILSAC_API_KEY : ${{ secrets.MAILSAC_API_KEY }}
83
83
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
+
84
99
# Upload test artifacts if tests failed
85
100
- name : Upload Test Artifacts
86
101
if : steps.integration_tests.outputs.exit_code != '0'
You can’t perform that action at this time.
0 commit comments