We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bccb288 commit ad108d6Copy full SHA for ad108d6
.github/workflows/nightly-checks.yml
@@ -72,7 +72,12 @@ jobs:
72
run: |
73
# Capture the output and exit code
74
OUTPUT_FILE="${{runner.temp}}/test-output.log"
75
- pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only 2>&1 | tee "$OUTPUT_FILE"
+ # Only run Typedoc tests for one matrix version
76
+ if [ "${{ matrix.test-name }}" == "nextjs" ]; then
77
+ E2E_APP_ID=next.quickstart.* pnpm run test:integration:nextjs -- --grep @quickstart 2>&1 | tee "$OUTPUT_FILE"
78
+ else
79
+ pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only 2>&1 | tee "$OUTPUT_FILE"
80
+ fi
81
echo "exit_code=${PIPESTATUS[0]}" >> $GITHUB_OUTPUT
82
env:
83
E2E_APP_CLERK_JS_DIR: ${{runner.temp}}
0 commit comments