diff --git a/.travis.yml b/.travis.yml index 0c8d77b..baa59b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,12 +2,11 @@ os: - linux - osx - windows - language: node_js node_js: - - '10' - '12' - + - '14' + - '16' env: - CXX=g++-4.8 addons: @@ -15,17 +14,16 @@ addons: sources: - ubuntu-toolchain-r-test packages: - - g++-4.9 - + - g++-6 before_install: - - 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then CC=gcc-4.9; fi' - - 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then CC=g++-4.9; fi' + - 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then CC=gcc-6; fi' + - 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then CC=g++-6; fi' before_script: - export NPMVERSION=$(echo "$($(which npm) -v)"|cut -c1) - 'if [[ $NPMVERSION == 5 ]]; then npm install -g npm; fi' - npm -v script: - - npm run test:package - - npm run test:unit - - export DEBUG=testing:* - - npm run test:integration + - 'npm run test:package' + - 'npm run test:unit' + - 'export DEBUG=testing:*' + - 'npm run test:integration'