Skip to content

Commit ad108d6

Browse files
committed
wip
1 parent bccb288 commit ad108d6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/nightly-checks.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,12 @@ jobs:
7272
run: |
7373
# Capture the output and exit code
7474
OUTPUT_FILE="${{runner.temp}}/test-output.log"
75-
pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only 2>&1 | tee "$OUTPUT_FILE"
75+
# 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
7681
echo "exit_code=${PIPESTATUS[0]}" >> $GITHUB_OUTPUT
7782
env:
7883
E2E_APP_CLERK_JS_DIR: ${{runner.temp}}

0 commit comments

Comments
 (0)