diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2019-03-04 19:05:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-04 19:05:09 +0100 |
commit | 16ad9889f562e730a7f39df8a20938f6a3a04edc (patch) | |
tree | 4337450a4d98f4f1b726d3ce98d9a161b0bc599d /.travis.yml | |
parent | 9cb124ed00aad8ac47690e31ad0bb8c3c365663d (diff) | |
download | jquery-16ad9889f562e730a7f39df8a20938f6a3a04edc.tar.gz jquery-16ad9889f562e730a7f39df8a20938f6a3a04edc.zip |
Build: Run Karma browser tests on Node.js 10 instead of 8
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
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c528d1651..01111e110 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ env: matrix: include: # Run browser tests only on one Node.js version to save time. - - node_js: "8" + - node_js: "10" env: NPM_SCRIPT=test:browser script: - npm run $NPM_SCRIPT |