chore: update dependencies for Laravel 9 (#6098)
This commit is contained in:
@@ -13,7 +13,7 @@ on:
|
||||
|
||||
env:
|
||||
php-version: '8.1'
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
|
||||
jobs:
|
||||
#############
|
||||
|
||||
@@ -5,7 +5,7 @@ on:
|
||||
types: [labeled, opened, synchronize, reopened]
|
||||
|
||||
env:
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
|
||||
|
||||
jobs:
|
||||
|
||||
@@ -15,7 +15,7 @@ on:
|
||||
|
||||
env:
|
||||
php-version: '8.1'
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
|
||||
jobs:
|
||||
#############
|
||||
|
||||
@@ -7,7 +7,7 @@ on:
|
||||
|
||||
env:
|
||||
php-version: '8.1'
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
|
||||
jobs:
|
||||
docker-run:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user