jquery/.travis.yml
Michał Gołębiowski-Owczarek b95e0da68e
Build: Don't require sudo on Travis, use sandboxless headless Chrome
The Chrome sandbox doesn't work on Travis unless sudo is enabled. Instead,
we're disabling the Chrome sandbox.

Closes gh-4011
2018-03-19 18:12:23 +01:00

19 lines
296 B
YAML

language: node_js
sudo: false
node_js:
- "4"
- "6"
- "8"
- "9"
addons:
chrome: stable
env:
- NPM_SCRIPT=test:browserless
matrix:
include:
# Run browser tests only on one Node.js version to save time.
- node_js: "8"
env: NPM_SCRIPT=test:browser
script:
- npm run $NPM_SCRIPT