mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
16ad9889f5
Node.js 10 has been in Active LTS since 2018-04-24 and Node.js 8 is now in maintenance mode. See https://github.com/nodejs/Release for more details. Closes gh-4311
19 lines
299 B
YAML
19 lines
299 B
YAML
language: node_js
|
|
sudo: false
|
|
node_js:
|
|
- "6"
|
|
- "8"
|
|
- "10"
|
|
- "11"
|
|
addons:
|
|
chrome: stable
|
|
env:
|
|
- NPM_SCRIPT=test:browserless
|
|
matrix:
|
|
include:
|
|
# Run browser tests only on one Node.js version to save time.
|
|
- node_js: "10"
|
|
env: NPM_SCRIPT=test:browser
|
|
script:
|
|
- npm run $NPM_SCRIPT
|