AMD64
no language set
Git
travis-ci/travis-vcs-proxy-web:.travis.yml@8df0e1e
---
language: node_js
node_js:
  - "18"

dist: focal

addons:
  chrome: stable

cache:
  directories:
    - $HOME/.npm

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

#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": "focal",
  "node_js": [
    "18"
  ],
  "addons": {
    "chrome": "stable"
  },
  "cache": {
    "directories": [
      "$HOME/.npm"
    ]
  },
  "env": {
    "global": [
      {
        "JOBS": "1"
      },
      {
        "NODE_OPTIONS": "--no-experimental-fetch"
      }
    ]
  },
  "script": [
    "npm test"
  ]
}