Skip to content

Commit fdd8832

Browse files
committed
[TASK] archive composer.lock file
this will help us to install current github workflow package versions
1 parent 4c48a03 commit fdd8832

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ jobs:
5050
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s functional
5151
if: matrix.TYPO3 != '14'
5252

53+
- name: Functional Tests 14
54+
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s functional --skip-group=content_defender
55+
if: matrix.TYPO3 == '14'
56+
5357
- name: Acceptance Tests
5458
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s acceptance -- --fail-fast
5559
if: matrix.TYPO3 != '14'
@@ -60,3 +64,10 @@ jobs:
6064
with:
6165
name: acceptance-test-reports-${{ matrix.php }}-${{ matrix.TYPO3 }}
6266
path: .Build/Web/typo3temp/var/tests/_output
67+
68+
- name: Archive composer.lock
69+
uses: actions/upload-artifact@v4
70+
if: always()
71+
with:
72+
name: composer.lock-${{ matrix.php }}-${{ matrix.TYPO3 }}
73+
path: composer.lock

0 commit comments

Comments
 (0)