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 ci #79

Closed
wants to merge 3 commits into from

Skip svelte

8abc501
Select commit
Loading
Failed to load commit list.
Closed

Update ci #79

Skip svelte
8abc501
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Aug 9, 2023 in 30m 35s

Build Failed

The build failed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #79 Update ci.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Node.js OS State
313.1 18 Linux failed
313.2 19 Linux failed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Focal), macOS, windows
Node.js Versions 16, 18, 19
Xcode Version xcode14
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux",
    "osx",
    "windows"
  ],
  "dist": "focal",
  "node_js": [
    "16",
    "18",
    "19"
  ],
  "git": {
    "autocrlf": false
  },
  "before_install": [
    "sudo apt update -y",
    "sudo apt install expect -y"
  ],
  "osx_image": [
    "xcode14"
  ],
  "cache": {
    "npm": false
  },
  "jobs": {
    "exclude": [
      {
        "osx_image": "xcode14",
        "node_js": "16"
      },
      {
        "if": "branch != master",
        "node_js": "18"
      },
      {
        "if": "branch != master",
        "node_js": "19"
      },
      {
        "if": "type = pull_request",
        "os": "osx"
      },
      {
        "if": "type = pull_request",
        "os": "windows"
      }
    ]
  },
  "script": [
    "npm t",
    "npm run test-templates",
    "npm run test-all-commands",
    "npm run test-lib-import",
    "sh tests/test-npx.sh"
  ]
}