jquery/.travis.yml
Michał Gołębiowski-Owczarek 2d5ad6d23e Build: Run tests on Firefox ESR as well
Closes gh-4530

(cherry picked from commit 0a73b94a21)
2019-10-22 20:22:53 +02:00

29 lines
586 B
YAML

language: node_js
sudo: false
node_js:
- "8"
- "10"
- "12"
- "13"
env:
- NPM_SCRIPT=test:browserless
matrix:
include:
# Run browser tests only on one Node.js version to save time.
- node_js: "12"
env:
- NPM_SCRIPT="test:browser"
- BROWSERS="ChromeHeadless,FirefoxHeadless"
addons:
chrome: stable
firefox: latest
# Run tests on Firefox ESR as well.
- node_js: "12"
env:
- NPM_SCRIPT="test:browser"
- BROWSERS="FirefoxHeadless"
addons:
firefox: latest-esr
script:
- npm run $NPM_SCRIPT