chore: update dependencies for Laravel 9 (#6098)

This commit is contained in:
Alexis Saettler
2022-08-12 18:42:35 +02:00
committed by GitHub
parent 6a7f49fd90
commit 78cd01b2b5
78 changed files with 1889 additions and 2286 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ on:
env:
php-version: '8.1'
node-version: 16
node-version: 18
jobs:
#############
+1 -1
View File
@@ -5,7 +5,7 @@ on:
types: [labeled, opened, synchronize, reopened]
env:
node-version: 16
node-version: 18
jobs:
+1 -1
View File
@@ -15,7 +15,7 @@ on:
env:
php-version: '8.1'
node-version: 16
node-version: 18
jobs:
#############
+1 -1
View File
@@ -7,7 +7,7 @@ on:
env:
php-version: '8.1'
node-version: 16
node-version: 18
jobs:
docker-run:
+2 -2
View File
@@ -14,8 +14,8 @@ on:
env:
php-version: '8.1'
build-node-version: 16
semantic-node-version: 16
build-node-version: 18
semantic-node-version: 18
jobs:
+4 -5
View File
@@ -15,7 +15,7 @@ on:
env:
default-php-version: '8.1'
node-version: 16
node-version: 18
jobs:
@@ -115,20 +115,19 @@ jobs:
# Test
- name: Run Unit test suite
if: matrix.php-version == env.default-php-version
run: phpdbg -dmemory_limit=4G -qrr vendor/bin/phpunit -c phpunit.xml --testsuite ${{ matrix.testsuite }} --log-junit ./results/junit/results${{ matrix.testsuite }}.xml --coverage-clover ./results/coverage/coverage${{ matrix.testsuite }}.xml
if: matrix.php-version == env.default-php-version && matrix.testsuite != 'Feature'
run: phpdbg -dmemory_limit=6G -qrr vendor/bin/phpunit -c phpunit.xml --testdox --testsuite ${{ matrix.testsuite }} --log-junit ./results/junit/results${{ matrix.testsuite }}.xml --coverage-clover ./results/coverage/coverage${{ matrix.testsuite }}.xml
env:
DB_CONNECTION: ${{ matrix.connection }}
STRIPE_SECRET: ${{ secrets.STRIPE_SECRET }}
- name: Run Unit test suite
if: matrix.php-version != env.default-php-version
if: matrix.php-version != env.default-php-version || matrix.testsuite == 'Feature'
run: vendor/bin/phpunit -c phpunit.xml --testsuite ${{ matrix.testsuite }} --log-junit ./results/junit/results${{ matrix.testsuite }}.xml
env:
DB_CONNECTION: ${{ matrix.connection }}
STRIPE_SECRET: ${{ secrets.STRIPE_SECRET }}
- name: Fix results files
if: matrix.php-version == env.default-php-version
run: sed -i -e "s%$GITHUB_WORKSPACE/%%g" **/*.xml
working-directory: results