Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Add node 10 to the Travis test matrix (#819)
Browse files Browse the repository at this point in the history
Node 10 has now been released:
https://nodejs.org/en/blog/release/v10.0.0/

We already have `"node": ">=8"` in `package.json` `engines` and
`Node.js v8+` in the READMEs, so this should be all that needs
updating.
  • Loading branch information
edmorley committed Apr 25, 2018
1 parent 0812108 commit 0434e01
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ cache: yarn
node_js:
- '8'
- '9'
- '10'
before_install:
# Use newer yarn than that pre-installed in the Travis image.
- curl -sSfL https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
install:
- yarn install --frozen-lockfile
# Remove --ignore-engines when this fixed:
# https://github.com/anodynos/upath/issues/14
- yarn install --frozen-lockfile --ignore-engines
- yarn link:all
script:
- yarn validate:eslintrc
Expand Down

0 comments on commit 0434e01

Please sign in to comment.