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

fix(import/order): do not compare first path segment for relative paths #2885

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

fix: add and fix repro case from issue,

5e12ad0
Select commit
Failed to load commit list.
Open

fix(import/order): do not compare first path segment for relative paths #2885

fix: add and fix repro case from issue,
5e12ad0
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 27, 2023 in 3m 25s

Build Passed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #2885 fix(import/order): do not compare first sibling and parent path segment.
Any changes that have been made to the main 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
1256.1 14 ESLINT_VERSION=5 macOS passed
1256.2 12 ESLINT_VERSION=5 macOS passed
1256.3 10 ESLINT_VERSION=5 macOS passed
1256.4 8 ESLINT_VERSION=4 macOS passed
1256.5 6 ESLINT_VERSION=3 macOS passed
1256.6 4 ESLINT_VERSION=2 macOS passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Xenial)
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "before_install": [
    "nvm install-latest-npm",
    "NPM_CONFIG_LEGACY_PEER_DEPS=true npm install",
    "npm run copy-metafiles"
  ],
  "install": [
    "NPM_CONFIG_LEGACY_PEER_DEPS=true npm install",
    "if [ -n \"${ESLINT_VERSION}\" ]; then ./tests/dep-time-travel.sh; fi",
    "npm run pretest"
  ],
  "script": [
    "npm run tests-only"
  ],
  "after_success": [
    "bash <(curl -Os https://uploader.codecov.io/latest/linux/codecov)"
  ],
  "jobs": {
    "include": [
      {
        "os": "osx",
        "env": [
          {
            "ESLINT_VERSION": "5"
          }
        ],
        "node_js": "14"
      },
      {
        "os": "osx",
        "env": [
          {
            "ESLINT_VERSION": "5"
          }
        ],
        "node_js": "12"
      },
      {
        "os": "osx",
        "env": [
          {
            "ESLINT_VERSION": "5"
          }
        ],
        "node_js": "10"
      },
      {
        "os": "osx",
        "env": [
          {
            "ESLINT_VERSION": "4"
          }
        ],
        "node_js": "8"
      },
      {
        "os": "osx",
        "env": [
          {
            "ESLINT_VERSION": "3"
          }
        ],
        "node_js": "6"
      },
      {
        "os": "osx",
        "env": [
          {
            "ESLINT_VERSION": "2"
          }
        ],
        "node_js": "4"
      }
    ],
    "fast_finish": true
  }
}