Project

General

Profile

« Previous | Next » 

Revision 15cb5f8c

Added by Tomer Brisker over 7 years ago

Fixes #17248 - Run js tests with node versions we use

Our package builders and test infrastracture use different versions of
nodejs. We should check that all js tests pass for all different
versions used, to prevent breakage in any of our supported OSes.

View differences:

.travis.yml
language: node_js
node_js:
- "node"
- "4" # Fedora
#- "0.10" # EL6, Trusty, Jessie - sadly, jest does not work with 0.10
- "4.2" # Xenial
- "4.6" # Fedora 24
- "6.9" # EL 7
before_install:
npm install -g npm@'>=3.0.0'
script: ./script/travis_run_js_tests.sh
script/travis_run_js_tests.sh
#!/bin/bash
set -ev
if [[ $( git diff --name-only HEAD~1..HEAD webpack/ | wc -l ) -ne 0 ]]; then
if [[ $( git diff --name-only HEAD~1..HEAD webpack/ .travis.yml package.json | wc -l ) -ne 0 ]]; then
npm run test;
fi

Also available in: Unified diff