Skip to content

Commit

Permalink
Remove xvfb, upload test output if job is cancelled
Browse files Browse the repository at this point in the history
Should improve debugging hangups
  • Loading branch information
hyphenized committed Feb 6, 2025
1 parent 5daa119 commit 7b6b8c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
TEST_WALLET_JSON_PASSWORD: ${{ secrets.TEST_WALLET_JSON_PASSWORD }}
run: xvfb-run npx playwright test --grep @expensive
- uses: actions/upload-artifact@v4
if: failure()
if: ${{ failure() || cancelled() }}
with:
name: debug-output
path: |
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:
USE_MAINNET_FORK: true
run: xvfb-run npx playwright test
- uses: actions/upload-artifact@v4
if: failure()
if: ${{ failure() || cancelled() }}
with:
name: fork-debug-output
path: |
Expand Down

0 comments on commit 7b6b8c6

Please sign in to comment.