Skip to content

Commit b1c29b3

Browse files
authored
build: resolve cypress matrix to single job (Uniswap#4075)
* build: resolve cypress matrix to single job * build: output on cypress-tests * build: explicitly name matrix steps * build: quote cypress string * build: omit protocol * build: test * build: fix indentation * build: test * build: test * build: test * build: cleanup * build: cleanup
1 parent b211c9f commit b1c29b3

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- if: steps.cypress-cache.outputs.cache-hit != 'true'
4949
run: yarn cypress install
5050

51-
cypress-tests:
51+
cypress-test-matrix:
5252
needs: cypress-build
5353
runs-on: ubuntu-latest
5454
strategy:
@@ -83,3 +83,10 @@ jobs:
8383
env:
8484
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
8585
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86+
87+
# Included as a single job to check against for cypress test success, as cypress runs in a matrix.
88+
cypress-tests:
89+
needs: cypress-test-matrix
90+
runs-on: ubuntu-latest
91+
steps:
92+
- run: echo 'Finished cypress tests https\://dashboard.cypress.io/projects/yp82ef'

0 commit comments

Comments
 (0)