From d177d9302f987720bbcea16d9e094ac6abc8ab70 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Sat, 3 Nov 2018 13:31:43 -0400 Subject: [PATCH 1/2] feat(Node.js): Drop support for Node.js 6 BREAKING CHANGE: Node.js 6 support is removed Connects https://github.com/pelias/pelias/issues/752 --- .travis.yml | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 60235aa..5cff975 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: node_js notifications: email: false node_js: - - 6 - 8 - 10 matrix: diff --git a/package.json b/package.json index 2b4d413..226bec8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.0.0-development", "description": "A fast, local, streaming Who's On First administrative hierarchy lookup.", "engines": { - "node": ">=6.0.0" + "node": ">=8.0.0" }, "main": "index.js", "scripts": { From 61d279edb1b95df2e0b2437fa443e8666653d260 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Sat, 3 Nov 2018 13:32:09 -0400 Subject: [PATCH 2/2] chore(release): Skip semantic-release run on pull reqeusts This should speed up our CI slightly --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5cff975..2d87924 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,4 +18,4 @@ jobs: - stage: release node_js: 10 script: curl "https://raw.githubusercontent.com/pelias/ci-tools/master/semantic-release.sh" | bash - - if: branch = master + if: (branch = master) AND ( type = push )