Compare commits

...

1 Commits

Author SHA1 Message Date
85811a09ab fix(ci): remove extra checks from php-composer (#70) 2025-03-13 21:50:32 +02:00
2 changed files with 6 additions and 25 deletions

25
.github/renovate.json vendored
View File

@@ -1,33 +1,20 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>ivuorinen/renovate-config"
],
"extends": ["github>ivuorinen/renovate-config"],
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch"
],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchDepTypes": [
"devDependencies"
],
"matchDepTypes": ["devDependencies"],
"automerge": true
}
],
"schedule": [
"before 4am on monday"
],
"schedule": ["before 4am on monday"],
"vulnerabilityAlerts": {
"labels": [
"security"
],
"assignees": [
"ivuorinen"
]
"labels": ["security"],
"assignees": ["ivuorinen"]
}
}

View File

@@ -238,12 +238,6 @@ runs:
exit 1
fi
# Check for any PHP errors in vendor
find vendor -name "*.php" -type f -exec php -l {} \; > /dev/null
# Verify Composer installation
composer validate --no-check-all --strict
- name: Generate Optimized Autoloader
if: success()
shell: bash