File tree Expand file tree Collapse file tree 3 files changed +39
-2
lines changed
Expand file tree Collapse file tree 3 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 5454 env :
5555 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5656 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
57+
58+ check :
59+ if : always()
60+ needs :
61+ - lint
62+ - sonar-scan
63+ - unit-tests
64+ runs-on : ubuntu-latest
65+ steps :
66+ - name : Decide whether the needed jobs succeeded or failed
67+ uses : re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
68+ with :
69+ jobs : ${{ toJSON(needs) }}
Original file line number Diff line number Diff line change 1818 matrix :
1919 # Available OS's: https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
2020 os : [ubuntu-latest, windows-latest]
21- environment-name : ["ESS PodSpaces"]
21+ environment-name : ["ESS PodSpaces", "ESS Release-2-3", "ESS Dev-2-4" ]
2222 experimental : [false]
2323 include :
2424 - environment-name : " ESS Dev-2-3"
5959 with :
6060 name : playwright-output
6161 path : test-results/
62+
63+ check :
64+ if : always()
65+ needs :
66+ - e2e-browser
67+ runs-on : ubuntu-latest
68+ steps :
69+ - name : Decide whether the needed jobs succeeded or failed
70+ uses : re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
71+ with :
72+ allowed-skips : e2e-browser
73+ jobs : ${{ toJSON(needs) }}
Original file line number Diff line number Diff line change 2020 matrix :
2121 os : [ubuntu-latest]
2222 node-version : [22.x, 20.x, 18.x]
23- environment-name : ["ESS PodSpaces", "ESS Dev -2-3"]
23+ environment-name : ["ESS PodSpaces", "ESS Release -2-3", "ESS Dev-2-4 "]
2424 experimental : [false]
2525 steps :
2626 - uses : actions/checkout@v4
5151 E2E_TEST_FEATURE_ACP_V3 : ${{ secrets.E2E_TEST_FEATURE_ACP_V3 }}
5252 E2E_TEST_FEATURE_WAC : ${{ secrets.E2E_TEST_FEATURE_WAC }}
5353 E2E_TEST_FEATURE_PROBLEM_DETAILS : ${{ secrets.E2E_TEST_FEATURE_PROBLEM_DETAILS }}
54+
55+ check :
56+ if : always()
57+ needs :
58+ - e2e-node
59+ runs-on : ubuntu-latest
60+ steps :
61+ - name : Decide whether the needed jobs succeeded or failed
62+ uses : re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
63+ with :
64+ allowed-skips : e2e-node
65+ jobs : ${{ toJSON(needs) }}
You can’t perform that action at this time.
0 commit comments