Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update package.json to fix Regular Expression Denial of Service in debug #706

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Fix error

978208d
Select commit
Loading
Failed to load commit list.
Open

Update package.json to fix Regular Expression Denial of Service in debug #706

Fix error
978208d
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Dec 8, 2023 in 1m 46s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #706 Update package.json to fix Regular Expression Denial of Service in debug.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has six jobs, running in parallel.

Job Node.js ENV OS State
1645.1 10 node_pre_gyp_mock_s3=true Linux failed
1645.2 12 node_pre_gyp_mock_s3=true Linux failed
1645.3 14 node_pre_gyp_mock_s3=true Linux passed
1645.4 16 node_pre_gyp_mock_s3=true Linux errored
1645.5 8 node_pre_gyp_mock_s3=true Linux failed
1645.6 10.23 Linux errored

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Bionic)
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "services": [
    "xvfb"
  ],
  "install": [
    "npm ci --engine-strict"
  ],
  "script": [
    "npm test"
  ],
  "jobs": {
    "include": [
      {
        "os": "linux",
        "node_js": "10",
        "env": [
          {
            "node_pre_gyp_mock_s3": "true"
          }
        ],
        "before_install": [
          "npm install request",
          "npm install --package-lock-only"
        ],
        "script": [
          "npm run lint",
          "npm run coverage"
        ],
        "after_script": [
          "npm run upload-coverage"
        ]
      },
      {
        "os": "linux",
        "node_js": "12",
        "env": [
          {
            "node_pre_gyp_mock_s3": "true"
          }
        ],
        "script": [
          "npm run coverage"
        ],
        "after_script": [
          "npm run upload-coverage"
        ]
      },
      {
        "os": "linux",
        "node_js": "14",
        "env": [
          {
            "node_pre_gyp_mock_s3": "true"
          }
        ]
      },
      {
        "os": "linux",
        "node_js": "16",
        "env": [
          {
            "node_pre_gyp_mock_s3": "true"
          }
        ],
        "addons": {
          "apt": {
            "sources": [
              {
                "name": "ubuntu-toolchain-r-test"
              }
            ],
            "packages": [
              "libavahi-compat-libdnssd-dev",
              "libzmq3-dev"
            ]
          }
        }
      },
      {
        "os": "linux",
        "node_js": "8",
        "env": [
          {
            "node_pre_gyp_mock_s3": "true"
          }
        ]
      },
      {
        "os": "linux",
        "node_js": "10.23",
        "addons": {
          "apt": {
            "sources": [
              {
                "name": "ubuntu-toolchain-r-test"
              }
            ],
            "packages": [
              "xvfb",
              "libasound2",
              "libx11-6",
              "libglib2.0-0",
              "libgtk2.0-0",
              "libatk1.0-0",
              "libgdk-pixbuf2.0-0",
              "libcairo2",
              "libfreetype6",
              "libfontconfig1",
              "libxcomposite1",
              "libasound2",
              "libxdamage1",
              "libxext6",
              "libxfixes3",
              "libnss3",
              "libnspr4",
              "libgconf-2-4",
              "libexpat1",
              "libdbus-1-3",
              "libudev1"
            ]
          }
        },
        "script": [
          "ln -s /usr/bin/python2 ~/bin/python",
          "ln -s /usr/bin/python2-config ~/bin/python-config",
          "./scripts/test-node-webkit.sh"
        ]
      }
    ]
  }
}