AMD64
Node.js: 18
Git
travis-ci/travis-vcs-proxy-web:.travis.yml@90130d5
---
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"
]
}