Skip to content

Add HtmlContentPlaceholder for seeding fixture HTML content #1564

Add HtmlContentPlaceholder for seeding fixture HTML content

Add HtmlContentPlaceholder for seeding fixture HTML content #1564

Triggered via push June 20, 2026 11:44
Status Failure
Total duration 5m 34s
Artifacts 8

ci.yml

on: push
Matrix: behat-lowest-deps
Matrix: behat-symfony-next
Matrix: behat
Matrix: php-cs-fixer
Matrix: phpunit-lowest-deps
Matrix: phpunit-symfony-next
Matrix: phpunit
Fit to window
Zoom out
Zoom in

Annotations

3 errors and 19 warnings
PHPUnit (Symfony NEXT 8.2) (PHP 8.5)
Process completed with exit code 1.
PHPUnit (Symfony 7.4) (PHP 8.5)
Process completed with exit code 1.
Behat (Symfony 7.4) (PHP 8.5)
Process completed with exit code 255.
PHP-CS-Fixer (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/checkout@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony ^7.4) (PHP 8.5) (lowest dependencies)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony NEXT 8.2) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony 8.1) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony 7.4) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4, codecov/codecov-action@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L145
Escaped Mutant for Mutator "CastInt": @@ @@ } public function getPublishableQueryCount(): int { - return (int) ($this->data['publishable_query_count'] ?? 0); + return $this->data['publishable_query_count'] ?? 0; } /** @return list<array{property: string, resolvedClass: string|null, skipReason: string|null}> */ public function getPageDataResolutions(): array
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L134
Escaped Mutant for Mutator "CastInt": @@ @@ } public function getPublishedTopicsCount(): int { - return (int) ($this->data['published_topics_count'] ?? 0); + return $this->data['published_topics_count'] ?? 0; } /** @return list<array{class: string, mode: string, queryType: string}> */ public function getPublishableQueries(): array
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L123
Escaped Mutant for Mutator "CastBool": @@ @@ } public function isPageDataFound(): bool { - return (bool) ($this->data['page_data_found'] ?? false); + return $this->data['page_data_found'] ?? false; } /** @return list<string> */ public function getPublishedTopics(): array
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L108
Escaped Mutant for Mutator "CastBool": @@ @@ } public function isJwtCookieCleared(): bool { - return (bool) ($this->data['jwt_cookie_cleared'] ?? false); + return $this->data['jwt_cookie_cleared'] ?? false; } public function getResolvedPath(): ?string {
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L103
Escaped Mutant for Mutator "CastBool": @@ @@ } public function isJwtRefreshIssued(): bool { - return (bool) ($this->data['jwt_refresh_issued'] ?? false); + return $this->data['jwt_refresh_issued'] ?? false; } public function isJwtCookieCleared(): bool {
PHPUnit (Symfony 7.4) (PHP 8.5): src/DataCollector/CwaDataCollector.php#L93
Escaped Mutant for Mutator "CastBool": @@ @@ // ----------------------------------------------------------------------- public function isJwtCookiePresent(): bool { - return (bool) ($this->data['jwt_cookie_present'] ?? false); + return $this->data['jwt_cookie_present'] ?? false; } public function getJwtCookieName(): ?string {
PHPUnit (Symfony 7.4) (PHP 8.5): src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L77
Escaped Mutant for Mutator "SpreadAssignment": @@ @@ * @var Operation $oldOperation */ foreach ($oldOperations as $key => $oldOperation) { - $subRoutePrefixParts = [...$routePrefixParts]; + $subRoutePrefixParts = $routePrefixParts; if ($currentRoutePrefix = $oldOperation->getRoutePrefix()) { $subRoutePrefixParts[] = trim($currentRoutePrefix, '/'); $subRoutePrefix = '/' . implode('/', $subRoutePrefixParts);
PHPUnit (Symfony 7.4) (PHP 8.5): src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L77
Escaped Mutant for Mutator "SpreadOneItem": @@ @@ * @var Operation $oldOperation */ foreach ($oldOperations as $key => $oldOperation) { - $subRoutePrefixParts = [...$routePrefixParts]; + $subRoutePrefixParts = [[...$routePrefixParts][0]]; if ($currentRoutePrefix = $oldOperation->getRoutePrefix()) { $subRoutePrefixParts[] = trim($currentRoutePrefix, '/'); $subRoutePrefix = '/' . implode('/', $subRoutePrefixParts);
PHPUnit (Symfony 7.4) (PHP 8.5): src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L64
Escaped Mutant for Mutator "SpreadAssignment": @@ @@ $resources = []; /** @var ApiResource $resourceMetadatum */ foreach ($resourceMetadata as $i => $resourceMetadatum) { - $finalRoutePrefixParts = [...$routePrefixParts]; + $finalRoutePrefixParts = $routePrefixParts; if ($currentRoutePrefix = $resourceMetadatum->getRoutePrefix()) { $finalRoutePrefixParts[] = trim($currentRoutePrefix, '/'); }
PHPUnit (Symfony 7.4) (PHP 8.5): src/ApiPlatform/Metadata/Resource/RoutingPrefixResourceMetadataCollectionFactory.php#L64
Escaped Mutant for Mutator "SpreadOneItem": @@ @@ $resources = []; /** @var ApiResource $resourceMetadatum */ foreach ($resourceMetadata as $i => $resourceMetadatum) { - $finalRoutePrefixParts = [...$routePrefixParts]; + $finalRoutePrefixParts = [[...$routePrefixParts][0]]; if ($currentRoutePrefix = $resourceMetadatum->getRoutePrefix()) { $finalRoutePrefixParts[] = trim($currentRoutePrefix, '/'); }
Behat (Symfony ^7.4) (PHP 8.5) (lowest dependencies)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
Behat (Symfony NEXT 8.2) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
Behat (Symfony 8.1) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
Behat (Symfony 7.4) (PHP 8.5)
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache@v4, actions/checkout@v4, actions/upload-artifact@v4, codecov/codecov-action@v4. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/

Artifacts

Produced during runtime
Name Size Digest
behat-logs-php8.5-lowest-deps
8.2 KB
sha256:8e2557cb86ae50f4315c365d7d19a0ff5179c581b55ca5138f240451bb3eb398
behat-logs-php8.5-symfony7.4
11.2 KB
sha256:414ec76baa2a84349e7e829cc97158535f968fe981074d7c1233684e06712506
behat-logs-php8.5-symfony8.1
11.2 KB
sha256:02026e9be2b362a3fe9bd24a60a44ad9c4a6e21e50c3fe5f1c5ec366a94ee5f8
behat-logs-php8.5-symfony8.2
11.1 KB
sha256:f3fe329c370c6e7a5dee2f587dc7258c95bb4050f349b1f16ea79f49ef43e816
phpunit-logs-php8.5-lowest-deps
11.6 KB
sha256:6e1177eca756f3628a04eb4e8e93c863d0b107ceb52e2a271e46bfee7d538835
phpunit-logs-php8.5-symfony7.4
808 KB
sha256:80a8e1840b2a364fa494307f86bac5939d64fae1dffe6d55437a9307c6aaeaab
phpunit-logs-php8.5-symfony8.1
11.7 KB
sha256:db0dde6f1c79523aef1d096ffd7535a22ea627a82b04788d1e3bdcb638a3c0d1
phpunit-logs-php8.5-symfony8.2
11.6 KB
sha256:b360c9663b091b5e6b32f2ffbddcdd6f6683c1f2b05ba887aee2601d39183609