File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 58
58
working-directory : ${{runner.temp}}
59
59
run : mkdir clerk-js && cd clerk-js && pnpm init && pnpm add @clerk/clerk-js
60
60
61
- - name : List installed packages in clerk-js
62
- working-directory : ${{runner.temp}}/clerk-js
63
- run : |
64
- echo "=== Listing installed packages in clerk-js ==="
65
- pnpm list --json
66
- echo "=== Detailed package info for @clerk/clerk-js ==="
67
- pnpm list @clerk/clerk-js
68
-
69
61
- name : Run Integration Tests
70
62
id : integration_tests
71
63
continue-on-error : true
74
66
OUTPUT_FILE="${{runner.temp}}/test-output.log"
75
67
# Only run Typedoc tests for one matrix version
76
68
if [ "${{ matrix.test-name }}" == "nextjs" ]; then
77
- E2E_APP_ID=next. quickstart.* pnpm run test:integration:nextjs -- --grep @quickstart 2>&1 | tee "$OUTPUT_FILE"
69
+ E2E_APP_ID=quickstart.next.appRouter pnpm test:integration:base --grep @quickstart 2>&1 | tee "$OUTPUT_FILE"
78
70
else
79
71
pnpm turbo test:integration:${{ matrix.test-name }} $TURBO_ARGS --only 2>&1 | tee "$OUTPUT_FILE"
80
72
fi
You can’t perform that action at this time.
0 commit comments