From 1fd4c7afee393c0898e40c0342312cc3efa41631 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Mon, 4 Feb 2019 19:23:48 -0800 Subject: [PATCH] chore: sync installed bolt versions on CI --- .appveyor.yml | 5 +---- .travis.yml | 2 +- ci/docker.sh | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index e6d6e19e33..86d87b1156 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -10,14 +10,11 @@ cache: branches: only: - master - - v6 install: - ps: Install-Product node $env:nodejs_version $env:platform - set PATH=%APPDATA%\npm;%PATH% -- npm i -g bolt@0.21.2 -- if not exist "node_modules" mkdir node_modules -- ps: Remove-Item node_modules -Recurse -Force +- npm i -g bolt@0.22.6 - bolt - yarn build - ps: | diff --git a/.travis.yml b/.travis.yml index deec2ab60c..ab8a5bd0ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ branches: - master - /^v\d+\.\d+\.\d+/ install: -- npm i -g bolt@0.22.5 +- if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then npm install -g bolt@0.22.6; fi script: ci/script.sh after_success: ci/coverage.sh notifications: diff --git a/ci/docker.sh b/ci/docker.sh index d1eec82f29..1395df5888 100755 --- a/ci/docker.sh +++ b/ci/docker.sh @@ -5,7 +5,7 @@ set -e NODE_INSTALLER="$1" npm i -g yarn -npm i -g bolt@0.22.5 +npm i -g bolt@0.22.6 cd /code