Skip to content

Bump js-yaml and mocha

15de448
Select commit
Loading
Failed to load commit list.
Open

From Dependabot: Bump js-yaml and mocha #447

Bump js-yaml and mocha
15de448
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Nov 15, 2025 in 10m 38s

Build Passed

The build passed.

Details

This is a normal build for the dependabot/npm_and_yarn/multi-824f84cb96 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build has seven jobs, running in parallel.

Stage 1: tests

This stage passed.

Job Node.js OS State
3224.1 Run eslint 18 Linux passed
3224.2 TypeScript 4.9 generation and compilation tests 18 Linux passed
3224.3 Unit tests - Node.js 20 20 Linux passed
3224.4 Unit tests w/ latest dependencies - Node.js 20 20 Linux passed
3224.5 Unit tests - Node.js 18 18 Linux passed
3224.6 Unit tests - Node.js 16 16 Linux passed
3224.7 TypeScript (latest) generation and compilation tests 18 Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Jammy)
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": false,
  "cache": {
    "directories": [
      "node_modules"
    ]
  },
  "jobs": {
    "include": [
      {
        "stage": "tests",
        "name": "Run eslint",
        "script": [
          "npm install -g eslint@4; npm run eslint;"
        ],
        "node_js": "18"
      },
      {
        "name": "TypeScript 4.9 generation and compilation tests",
        "node_js": "18",
        "script": [
          "npm install -g typescript@4.9;",
          "pushd test/unit/typescript/",
          "tsc -p .",
          "node -e \"require('./api-generation-test').generate()\" > generated.ts",
          "tsc generated.ts"
        ]
      },
      {
        "name": "Unit tests - Node.js 20",
        "node_js": "20",
        "script": [
          "npm test"
        ]
      },
      {
        "name": "Unit tests w/ latest dependencies - Node.js 20",
        "node_js": "20",
        "script": [
          "rm package-lock.json",
          "rm -rf node_modules",
          "npm install",
          "npm test"
        ]
      },
      {
        "name": "Unit tests - Node.js 18",
        "node_js": "18",
        "script": [
          "npm test"
        ]
      },
      {
        "name": "Unit tests - Node.js 16",
        "node_js": "16",
        "script": [
          "npm test"
        ]
      },
      {
        "name": "TypeScript (latest) generation and compilation tests",
        "node_js": "18",
        "script": [
          "npm install -g typescript;",
          "pushd test/unit/typescript/",
          "tsc -p .",
          "node -e \"require('./api-generation-test').generate()\" > generated.ts",
          "tsc generated.ts"
        ]
      }
    ]
  }
}