diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2020-03-13 17:16:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 17:16:07 +0100 |
commit | 5b94a4f847fe2328b1b8f2340b11b6031f95d2d1 (patch) | |
tree | d66e2f4fa0ce5b98587a44aa0ff2c5f4ca287102 | |
parent | 9d76c0b163675505d1a901e5fe5249a2c55609bc (diff) | |
download | jquery-5b94a4f847fe2328b1b8f2340b11b6031f95d2d1.tar.gz jquery-5b94a4f847fe2328b1b8f2340b11b6031f95d2d1.zip |
Build: Resolve Travis config warnings
Travis reports warnings in our config:
* root: deprecated key sudo (The key `sudo` has no effect anymore.)
* root: missing os, using the default linux
* root: key matrix is an alias for jobs, using jobs
They are all now resolved.
Closes gh-4636
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 81946bbe7..51be32aae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: node_js -sudo: false +os: linux node_js: - "8" - "10" @@ -7,7 +7,7 @@ node_js: - "13" env: - NPM_SCRIPT=test:browserless -matrix: +jobs: include: - name: "Browser tests: full build, Chrome & Firefox stable" node_js: "12" |