Skip to content

Commit 00c568a

Browse files
committed
fix wrong names
1 parent 8475329 commit 00c568a

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
unit-tests:
192192
needs: [check-permissions, build-packages]
193193
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
194-
name: Unit Tests${{ matrix.clerk-use-rq == 'true' && ' (CLERK_USE_RQ=true)' || '' }}
194+
name: Unit Tests (${{ matrix.node-version }}, ${{ matrix.filter-label }}${{ matrix.clerk-use-rq == 'true' && ', RQ' || '' }})
195195
permissions:
196196
contents: read
197197
actions: write # needed for actions/upload-artifact
@@ -211,18 +211,11 @@ jobs:
211211
- node-version: 22
212212
test-filter: "**"
213213
clerk-use-rq: "false"
214+
filter-label: "**"
214215
- node-version: 22
215-
test-filter: "--filter=@clerk/shared"
216-
clerk-use-rq: "false"
217-
- node-version: 22
218-
test-filter: "--filter=@clerk/shared"
219-
clerk-use-rq: "true"
220-
- node-version: 22
221-
test-filter: "--filter=@clerk/clerk-js"
222-
clerk-use-rq: "false"
223-
- node-version: 22
224-
test-filter: "--filter=@clerk/clerk-js"
216+
test-filter: "--filter=@clerk/shared --filter=@clerk/clerk-js"
225217
clerk-use-rq: "true"
218+
filter-label: "shared, clerk-js"
226219

227220
steps:
228221
- name: Checkout Repo
@@ -257,10 +250,10 @@ jobs:
257250
- name: Run tests in packages
258251
run: |
259252
if [ "${{ matrix.test-filter }}" = "**" ]; then
260-
echo "Running full test suite on Node ${{ matrix.node-version }}."
253+
echo "Running full test suite on Node ${{ matrix.node-version }}"
261254
pnpm turbo test $TURBO_ARGS
262255
else
263-
echo "Running tests with filter: ${{ matrix.test-filter }}"
256+
echo "Running tests: ${{ matrix.filter-label }}"
264257
pnpm turbo test $TURBO_ARGS ${{ matrix.test-filter }}
265258
fi
266259
env:
@@ -288,7 +281,7 @@ jobs:
288281
integration-tests:
289282
needs: [check-permissions, build-packages]
290283
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
291-
name: Integration Tests${{ matrix.clerk-use-rq == 'true' && ' (CLERK_USE_RQ=true)' || '' }}
284+
name: Integration Tests (${{ matrix.test-name }}, ${{ matrix.test-project }}${{ matrix.next-version && format(', {0}', matrix.next-version) || '' }}${{ matrix.clerk-use-rq == 'true' && ', RQ' || '' }})
292285
permissions:
293286
contents: read
294287
actions: write # needed for actions/upload-artifact

0 commit comments

Comments
 (0)