Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Richter committed Mar 8, 2024
1 parent e61996b commit 787e81a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
- name: "Pull typo3 image"
run: "docker pull ghcr.io/typo3/core-testing-php82:1.11"
- name: "Install Composer dependencies"
run: "composer ci:install -b docker"
run: "composer ci:install"
- name: "Run command"
run: "composer ci:php:stan -b docker"
run: "composer ci:php:stan"

unit-tests:
name: Unit Tests
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
"scripts": {
"ci": [ "@ci:install", "@ci:php", "@ci:tests" ],
"ci:php": [ "@ci:php:stan" ],
"ci:php:stan": [ "Build/Scripts/runTests.sh -s phpstan" ],
"ci:php:stan": [ "Build/Scripts/runTests.sh -s phpstan -b docker" ],
"ci:tests": [ "@ci:tests:unit", "@ci:tests:functional" ],
"ci:tests:unit": [ "Build/Scripts/runTests.sh -s unit" ],
"ci:tests:functional": [ "Build/Scripts/runTests.sh -s functional" ],
"ci:install": [ "Build/Scripts/runTests.sh -s composerInstall" ]
"ci:tests:unit": [ "Build/Scripts/runTests.sh -s unit -b docker" ],
"ci:tests:functional": [ "Build/Scripts/runTests.sh -s functional -b docker" ],
"ci:install": [ "Build/Scripts/runTests.sh -s composerInstall -b docker" ]
},
"config": {
"allow-plugins": {
Expand Down

0 comments on commit 787e81a

Please sign in to comment.