We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ce05e5 commit 0a8b394Copy full SHA for 0a8b394
.github/workflows/screenshot-comparison.yml
@@ -51,6 +51,14 @@ jobs:
51
- name: Setup Gradle
52
uses: gradle/actions/setup-gradle@v4
53
54
+ - name: Wait for base unit-test to succeed before downloading base branch screenshot artifact
55
+ uses: lewagon/wait-on-check-action@v1.3.4
56
+ with:
57
+ ref: ${{ steps.get_base_branch_head.outputs.sha }}
58
+ check-name: 'unit-test'
59
+ repo-token: ${{ github.token }}
60
+ wait-interval: 10
61
+
62
- name: Download screenshot artifact from base branch for comparison
63
uses: dawidd6/action-download-artifact@v11
64
continue-on-error: true
.github/workflows/unit-test.yml
@@ -14,7 +14,6 @@ on:
14
15
jobs:
16
unit-test:
17
- needs: build
18
runs-on: ubuntu-latest
19
timeout-minutes: 30
20
0 commit comments