Skip to content

Commit dda1fb4

Browse files
authored
Test against dev-2-4 and release-2-3 (#2659)
* Test against dev-2-4 and release-2-3 * Add all-greens for branch protection
1 parent da72f9f commit dda1fb4

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,16 @@ jobs:
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) }}

.github/workflows/e2e-browser.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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"
@@ -59,3 +59,15 @@ jobs:
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) }}

.github/workflows/e2e-node.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
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
@@ -51,3 +51,15 @@ jobs:
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) }}

0 commit comments

Comments
 (0)