This repository was archived by the owner on Aug 21, 2026. It is now read-only.
github-actions (3.x): bump actions/checkout #1018
continuous-integration.yml
on: push
Matrix: Validate Project / Check composer dependencies with composer-dependency-analyser
Matrix: Validate Project / Check composer with composer-normalize
Matrix: Validate Project / Check with editorconfig-checker
Matrix: Validate Project / Lint PHP
Matrix: Validate Project / Validate markdown files
Matrix: Validate Project / Linting with overtrue/phplint
Matrix: Validate Project / Validate composer
Matrix: Validate Project / Validate yaml
Matrix: Install Project / Install Node dependencies
Matrix: Install Project / Install PHP dependencies
Matrix: Project Analysis / Run eslint
Matrix: Project Analysis / Run oxlint
Matrix: Project Analysis / Check Coding Standards with PHP-CS-Fixer
Matrix: Project Analysis / Check Coding Standards with PHPCS
Matrix: Project Analysis / Run prettier
Matrix: Project Analysis / Checks with Rector
Matrix: Project Analysis / Static Code Analysis with PHPStan
Matrix: Project Analysis / Run stylelint
Matrix: UnitTests / Code Coverage with PHPUnit
Matrix: UnitTests / UnitTests with PHPUnit
Matrix: UnitTests / UnitTests with stryker
Matrix: UnitTests / UnitTests with vitest
Unit & Integration Tests Status
4s
Annotations
2 errors and 4 warnings
|
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)
🚨 CC Reporter download failed!
|
|
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)
Download of 'https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64' failed with response status code 404
|
|
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest):
src/View/Helper/ViteUrlFactory.php#L64
Escaped Mutant for Mutator "LogicalNot":
@@ @@
$buildDir = null;
}
$viteHost = $config['vite-host'] ?? null;
- if (!is_string($viteHost)) {
+ if (is_string($viteHost)) {
$viteHost = null;
}
return new ViteUrl($publicDir, $buildDir, $viteHost);
}
}
|
|
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest):
src/View/Helper/ViteUrl.php#L78
Escaped Mutant for Mutator "UnwrapLtrim":
@@ @@
throw new RuntimeException('A Public Dir is required');
}
if ($this->viteHost) {
- return $this->viteHost . '/' . ltrim($name, '/');
+ return $this->viteHost . '/' . $name;
}
$view = $this->getView();
if (!$view instanceof PhpRenderer) {
|
|
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)
Please check if your platform is supported — see https://docs.codeclimate.com/docs/configuring-test-coverage#section-locations-of-pre-built-binaries
|
|
UnitTests / Code Coverage with PHPUnit (ubuntu-latest, 8.3, lowest)
Could not download https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
|