Skip to content

Commit 9c812a3

Browse files
committed
fixup! ci(test): run e2e against a single PHP version
1 parent 554e00c commit 9c812a3

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,23 @@ jobs:
1010
matrix:
1111
runs-on: ubuntu-latest-low
1212
outputs:
13-
matrix: ${{ steps.versions.outputs.sparse-matrix }}
14-
php-min: ${{ steps.versions.outputs.php-min }}
15-
nextcloud-versions: ${{ steps.versions.outputs.branches }}
13+
php-min-list: ${{ steps.versions.outputs.php-min-list }}
14+
branches: ${{ steps.versions.outputs.branches }}
1615
steps:
1716
- name: Checkout app
1817
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1918
- name: Get version matrix
2019
id: versions
2120
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
22-
with:
23-
matrix: '{"node-versions": ["20"]}'
2421

2522
frontend-e2e-tests:
2623
runs-on: ubuntu-latest
2724
name: Front-end E2E tests
2825
needs: matrix
2926
strategy:
3027
matrix:
31-
php-min: ["${{ fromJson(needs.matrix.outputs.php-min) }}"]
32-
server-versions: ${{ fromJson(needs.matrix.outputs.nextcloud-versions) }}
28+
php-versions: ${{ fromJson(needs.matrix.outputs.php-min-list) }}
29+
server-versions: ${{ fromJson(needs.matrix.outputs.branches) }}
3330
node-versions: ["20"]
3431
steps:
3532
- name: Set up Nextcloud env

0 commit comments

Comments
 (0)