Configure Renovate #114
Open
Configure Renovate #114
Travis CI / Travis CI - Pull Request
succeeded
May 7, 2025 in 32s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #114 Configure Renovate.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Node.js |
| Operating System | Linux (Xenial) |
Build Configuration
{
"language": "node_js",
"os": [
"linux"
],
"dist": "xenial",
"sudo": true,
"services": [
"docker"
],
"before_install": [
"echo \"to be done\""
],
"script": [
"echo \"to be done\""
],
"after_success": [
"test \"$TRAVIS_EVENT_TYPE\" != \"pull_request\" && cd kcontainer && make build-changed || echo \"success\""
],
"branches": {
"only": [
"master",
"/^[0-9]+\\..*$/",
"/^v[0-9]+\\..*$/",
"/^release-[0-9]+\\..*$/"
]
},
"deploy": [
{
"provider": "script",
"skip_cleanup": true,
"script": "bash -c \"make push-changed\"",
"on": {
"all_branches": true,
"condition": [
"$TRAVIS_BRANCH =~ ^master|[0-9]+\\..*|v[0-9]+\\..*|release-[0-9]+\\..*$"
]
}
}
]
}
Loading