From 5561654d29b1869c587bace060e59315107e5e56 Mon Sep 17 00:00:00 2001 From: Estevao Soares dos Santos Date: Mon, 7 May 2018 19:39:09 +0100 Subject: [PATCH] chore: update travis and appveyor --- .appveyor.yml | 23 ++++++----------------- .travis.yml | 5 ++--- 2 files changed, 8 insertions(+), 20 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 50a0948..bd192d6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,13 +7,13 @@ # What combinations to test environment: matrix: - - nodejs_version: "4" - platform: x64 - - nodejs_version: "4" - platform: x86 - nodejs_version: "6" platform: x64 - - nodejs_version: "7" + - nodejs_version: "6" + platform: x86 + - nodejs_version: "8" + platform: x64 + - nodejs_version: "10" platform: x64 install: @@ -24,10 +24,7 @@ install: # install node # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version - - ps: >- - if ($env:nodejs_version -eq "0.12" -or $env:nodejs_version -eq "0.10") { - $env:PATH="$env:APPDATA\npm;$env:PATH" - } + # install grunt-cli globally - npm install -g grunt-cli # install modules @@ -36,14 +33,6 @@ install: test_script: # Output useful info for debugging - node --version && npm --version - - ps: >- - if ($env:nodejs_version -eq "0.12" -or $env:nodejs_version -eq "0.10") { - echo ----- Running tests in LEGACY mode ----- - grunt test-old - } else { - echo ----- Running tests in NORMAL mode ----- - grunt test - } # Don't actually build. build: off diff --git a/.travis.yml b/.travis.yml index 320045b..ac59b3c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,10 @@ language: node_js node_js: - - "4" - "6" - - "7" + - "8" + - "10" before_install: - - 'if [ "$TRAVIS_NODE_VERSION" != "0.10" -a "$TRAVIS_NODE_VERSION" != "0.12" ]; then npm update npm -g; fi' - npm install -g grunt-cli #travis build speed up