Skip to content

Commit 25b9a34

Browse files
authored
Nit: Name the various 'upload-artifact' CI steps (#7498)
This makes it easier to read GH actions and find the artifacts you're looking for.
1 parent b2152a5 commit 25b9a34

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ jobs:
9595
shell: bash
9696
run: npm run build:wasm
9797

98-
- uses: actions/upload-artifact@v4
98+
- name: Upload compiled wasm artifacts
99+
uses: actions/upload-artifact@v4
99100
with:
100101
name: prepared-wasm
101102
path: |
@@ -176,7 +177,8 @@ jobs:
176177
CI_SUITE: e2e:snapshots
177178
TARGET: web
178179

179-
- uses: actions/upload-artifact@v4
180+
- name: Upload playwright report
181+
uses: actions/upload-artifact@v4
180182
if: ${{ !cancelled() }}
181183
with:
182184
name: playwright-report-snapshot-${{ github.sha }}
@@ -290,7 +292,8 @@ jobs:
290292
CI_SUITE: e2e:web
291293
TARGET: web
292294

293-
- uses: actions/upload-artifact@v4
295+
- name: Upload playwright report
296+
uses: actions/upload-artifact@v4
294297
if: ${{ !cancelled() && (success() || failure()) }}
295298
with:
296299
name: playwright-report-web-${{ env.OS_NAME }}-${{ matrix.shardIndex }}-${{ github.sha }}
@@ -415,7 +418,8 @@ jobs:
415418
CI_SUITE: e2e:desktop
416419
TARGET: desktop
417420

418-
- uses: actions/upload-artifact@v4
421+
- name: Upload test report
422+
uses: actions/upload-artifact@v4
419423
if: always()
420424
with:
421425
name: test-results-desktop-${{ env.OS_NAME }}-${{ matrix.shardIndex }}-${{ github.sha }}
@@ -424,7 +428,8 @@ jobs:
424428
retention-days: 30
425429
overwrite: true
426430

427-
- uses: actions/upload-artifact@v4
431+
- name: Upload playwright report
432+
uses: actions/upload-artifact@v4
428433
if: always()
429434
with:
430435
name: playwright-report-desktop-${{ env.OS_NAME }}-${{ matrix.shardIndex }}-${{ github.sha }}

0 commit comments

Comments
 (0)