Skip to content

Commit

Permalink
ci: pin Node.js 10.x version to 10.0.0
Browse files Browse the repository at this point in the history
When running on Node.js 10.1.0, fs-extra triggers the following warning:

  ExperimentalWarning: The fs.promises API is experimental

Unfortunately it's not enough to upgrade to the latest fs-extra,
because many of our (deep) dependencies are still using an older
fs-extra version.
  • Loading branch information
bajtos committed May 10, 2018
1 parent d496ae1 commit a36e257
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ sudo: false
language: node_js
node_js:
- "8"
- "10"
- "10.0.0" # Pinned to prevent warning "fs.promises API is experimental"
# Waiting for https://github.com/nodejs/node/pull/20632

os:
- linux
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "10"
- nodejs_version: "10.0.0"

install:
- ps: Install-Product node $env:nodejs_version
Expand Down

0 comments on commit a36e257

Please sign in to comment.