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

View File

@@ -238,12 +238,6 @@ runs:
exit 1 exit 1
fi 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 - name: Generate Optimized Autoloader
if: success() if: success()
shell: bash shell: bash