Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

Commit

Permalink
Merge pull request #4212 from DanielRuf/ci/test-nodejs-6-8-10
Browse files Browse the repository at this point in the history
ci: test Node.js 6, 8 and 10
  • Loading branch information
jdrouet committed Dec 7, 2018
2 parents d856b36 + ae01a12 commit e5cd2f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jobs:

steps:
- run:
name: Install node@9
name: Install node@10
command: |
set +e
touch $BASH_ENV
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
echo 'nvm install 9' >> $BASH_ENV
echo 'nvm alias default 9' >> $BASH_ENV
echo 'nvm install 10' >> $BASH_ENV
echo 'nvm alias default 10' >> $BASH_ENV
- run:
name: Install wine
command: brew install wine
Expand Down
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ sudo: false

language: node_js
node_js:
- "4.8.7"
- "6"
- "8"
- "10"

cache:
directories:
Expand All @@ -11,3 +13,5 @@ cache:
script:
- npm install
- npm test

install: npm i

0 comments on commit e5cd2f3

Please sign in to comment.