Skip to content

Commit

Permalink
move migrate to a separate d11 only step
Browse files Browse the repository at this point in the history
  • Loading branch information
Berdir committed Jul 29, 2024
1 parent fed07a9 commit 1d3efa9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@ jobs:
run: docker-compose exec -u ${DOCKER_USER_ID} -T php composer require --no-interaction --dev --no-update drupal/core:^${DRUPAL_VERSION} drupal/core-recommended:^${DRUPAL_VERSION}
- name: composer install
run: docker-compose exec -T php composer install
- name: composer phpunit-configuration
run: docker-compose exec -T php phpunit --migrate-configuration
if: "${{ matrix.drupal_version == '11'}}"
- name: composer test
run: docker-compose exec -T php composer test
2 changes: 0 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
},
"scripts": {
"lint": "XDEBUG_MODE=off parallel-lint src spec tests",
"phpunit-configuration": "phpunit --migrate-configuration",
"phpunit": "XDEBUG_MODE=coverage phpunit",
"phpspec": "XDEBUG_MODE=off phpspec run -f pretty --no-interaction",
"phpcs": "XDEBUG_MODE=off phpcs --standard=./phpcs-ruleset.xml .",
Expand All @@ -49,7 +48,6 @@
"test": [
"XDEBUG_MODE=off composer validate --no-interaction",
"@lint",
"@phpunit-configuration",
"@phpunit",
"@phpspec",
"@phpcs",
Expand Down

0 comments on commit 1d3efa9

Please sign in to comment.