Skip to content

Commit acf36bb

Browse files
committed
ci(test): run e2e against a single PHP version
Signed-off-by: Richard Steinmetz <[email protected]>
1 parent 184b978 commit acf36bb

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,22 +230,24 @@ jobs:
230230
matrix:
231231
runs-on: ubuntu-latest-low
232232
outputs:
233-
matrix: ${{ steps.versions.outputs.sparse-matrix }}
233+
php-min-list: ${{ steps.versions.outputs.php-min-list }}
234+
branches: ${{ steps.versions.outputs.branches }}
234235
steps:
235236
- name: Checkout app
236237
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
237238
- name: Get version matrix
238239
id: versions
239240
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
240-
with:
241-
matrix: '{"node-versions": ["20"]}'
242241

243242
frontend-e2e-tests:
244243
runs-on: ubuntu-latest
245244
name: Front-end E2E tests
246245
needs: matrix
247246
strategy:
248-
matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}
247+
matrix:
248+
php-versions: ${{ fromJson(needs.matrix.outputs.php-min-list) }}
249+
server-versions: ${{ fromJson(needs.matrix.outputs.branches) }}
250+
node-versions: ["20"]
249251
steps:
250252
- name: Set up Nextcloud env
251253
uses: ChristophWurst/setup-nextcloud@fc0790385c175d97e88a7cb0933490de6e990374 # v0.3.2

0 commit comments

Comments
 (0)