diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-02-11 14:04:51 +0100 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-02-25 12:04:28 +0100 |
| commit | 5df6076543862e5f8c0ac0430f2774ecb9cd8362 (patch) | |
| tree | 8f9555c0ff9218cd88d95a36aee3854fee789721 | |
| parent | c41c9d846f8670886816c8883a7cbff833f95e26 (diff) | |
| download | mullvadvpn-5df6076543862e5f8c0ac0430f2774ecb9cd8362.tar.xz mullvadvpn-5df6076543862e5f8c0ac0430f2774ecb9cd8362.zip | |
Give `end-to-end tests` steps descriptive names
| -rw-r--r-- | .github/workflows/desktop-e2e.yml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml index 2165308d76..2e67ee41b6 100644 --- a/.github/workflows/desktop-e2e.yml +++ b/.github/workflows/desktop-e2e.yml @@ -154,7 +154,8 @@ jobs: matrix: os: ${{ fromJSON(needs.prepare-matrices.outputs.linux_matrix) }} steps: - - uses: actions/download-artifact@v4 + - name: Download App + uses: actions/download-artifact@v4 if: ${{ needs.build-linux.result == 'success' }} with: name: linux-build @@ -167,7 +168,8 @@ jobs: git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - - uses: actions/upload-artifact@v4 + - name: Upload test report + uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: ${{ matrix.os }}_report @@ -242,7 +244,8 @@ jobs: matrix: os: ${{ fromJSON(needs.prepare-matrices.outputs.windows_matrix) }} steps: - - uses: actions/download-artifact@v4 + - name: Download App + uses: actions/download-artifact@v4 if: ${{ needs.build-windows.result == 'success' }} with: name: windows-build @@ -255,7 +258,8 @@ jobs: git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - - uses: actions/upload-artifact@v4 + - name: Upload test report + uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: ${{ matrix.os }}_report @@ -314,7 +318,8 @@ jobs: matrix: os: ${{ fromJSON(needs.prepare-matrices.outputs.macos_matrix) }} steps: - - uses: actions/download-artifact@v4 + - name: Download App + uses: actions/download-artifact@v4 if: ${{ needs.build-macos.result == 'success' }} with: name: macos-build @@ -327,7 +332,8 @@ jobs: git fetch --tags --prune-tags --force export TEST_FILTERS="${{ github.event.inputs.tests }}" ./test/scripts/ci-runtests.sh ${{ matrix.os }} - - uses: actions/upload-artifact@v4 + - name: Upload test report + uses: actions/upload-artifact@v4 if: '!cancelled()' with: name: ${{ matrix.os }}_report |
