6 Commits

Author SHA1 Message Date
291ffc41bc Add a renovate.json schema validation (#45)
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m23s
Reviewed-on: #45
2025-12-19 17:51:59 +01:00
60c6779c64 Add a renovate.json schema validation hook
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m25s
2025-12-19 17:49:54 +01:00
fb80f152df Add a schema validation for the renovate.json 2025-12-19 17:49:28 +01:00
1da1212c8f Run npm-install and add npm install as a post update option (#42)
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m35s
Reviewed-on: #42
2025-12-16 19:32:16 +01:00
a892e71b21 run-npm-install (#44)
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m30s
Reviewed-on: #44
2025-12-16 01:10:50 +01:00
74d74b73ad Run npm install (#43)
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m18s
Reviewed-on: #43
2025-12-16 01:07:55 +01:00
2 changed files with 16 additions and 0 deletions

View File

@@ -49,3 +49,8 @@ repos:
hooks:
- id: prettier
types_or: [css, javascript]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.36.0
hooks:
- id: check-renovate

View File

@@ -13,6 +13,17 @@
"postUpdateOptions": [
"npmInstall"
]
},
{
"matchPackageNames": [
"npm"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
],
"enabled": true
}
]
}