Pull Request #9 Update .travis.yml - branches.only disabled

Fix .travis.yml branches config + comment out for now to enable builds on all branches

Michał Rybiński avatar Michał Rybiński

Pull request event #2.1 failed

  • Ran for
AMD64
Node.js: 10
Git
travis-ci/travis-vcs-proxy-web:.travis.yml@e222f5b
---
language: node_js
node_js:
  - "10"

dist: xenial

addons:
  chrome: stable

cache:
  directories:
    - $HOME/.npm

env:
  global:
    # See https://git.io/vdao3 for details.
    - JOBS=1

#branches:
#  only:
#    - main
# If we decide to build on all branches, remove this section completely.
# For now, removed to enable building on other branches + fixing the name of branch to 'main'

script:
  - npm test
Build Config
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "node_js": [
    "10"
  ],
  "addons": {
    "chrome": "stable"
  },
  "cache": {
    "directories": [
      "$HOME/.npm"
    ]
  },
  "env": {
    "global": [
      {
        "JOBS": "1"
      }
    ]
  },
  "script": [
    "npm test"
  ]
}