Skip to content

Add renovate.json

14db619
Select commit
Loading
Failed to load commit list.
Open

chore: Configure Renovate #16

Add renovate.json
14db619
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action May 8, 2025 in 49s

Build Errored

The build errored, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #16 chore: Configure Renovate.
Any changes that have been made to the main 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 (Focal)
Node.js Version 22
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "node_js": [
    "22"
  ],
  "cache": {
    "npm": true
  },
  "branches": {
    "only": [
      "main"
    ]
  },
  "jobs": {
    "include": [
      {
        "stage": "verify",
        "install": [
          "npm install"
        ],
        "script": [
          "npm run build",
          "npm run test-unit-travis || travis_terminate 1",
          "npm run lint",
          "npm run check-packages"
        ]
      }
    ]
  }
}