Skip to content

Commit

Permalink
Adjust test matrix with PHP 8.3 and different npm versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Feb 15, 2024
1 parent 7bffcc0 commit 2e9839f
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
matrix:
include:
- php-version: '8.1'
node-version: '14'
node-version: '18'
npm-version: '8'
mysql-version: '5.7'
create-project: false
create-database: false
Expand All @@ -39,8 +40,25 @@ jobs:
DATABASE_URL: "mysql://root:@127.0.0.1:3306/sulu_test?serverVersion=5.7"

- php-version: '8.2'
node-version: '16'
npm-version: '6'
node-version: '20'
npm-version: '9'
mysql-version: '8.0'
create-project: true
create-database: true
checkout-directory: 'project'
working-directory: 'create-project-test'
php-extensions: 'ctype, iconv, mysql, gd'
tools: 'composer:v2'
env:
APP_ENV: test
APP_SECRET: a448d1dfcaa563fce56c2fd9981f662b
MAILER_URL: null://localhost
SULU_ADMIN_EMAIL:
DATABASE_URL: "mysql://root:@127.0.0.1:3306/sulu_test?serverVersion=8.0"

- php-version: '8.3'
node-version: '20'
npm-version: '10'
mysql-version: '8.0'
create-project: true
create-database: true
Expand Down

0 comments on commit 2e9839f

Please sign in to comment.