diff --git a/.circleci/config.yml b/.circleci/config.yml index 3ed292fe..c1f237c4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,4 +9,4 @@ jobs: - setup_remote_docker - run: name: Build and push image to Docker Hub - command: apk --no-cache add curl && curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | sh - + command: apk --no-cache add curl bash && curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash - diff --git a/.travis.yml b/.travis.yml index 3dd2c224..2d879243 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: node_js notifications: email: false node_js: - - 6 - 8 - 10 matrix: @@ -19,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 = production + if: (branch = master) AND ( type = push ) diff --git a/README.md b/README.md index 6d802444..c2c475f9 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,9 @@ Full documentation for the Pelias API lives in the [pelias/documentation](https: ## Install Dependencies -Note: Pelias requires Node.js v6 or newer +The Pelias API has no dependencies beyond Node.js + +See [Pelias Software requirements](https://github.com/pelias/documentation/blob/master/requirements.md) for the supported and recommended versions. ```bash npm install diff --git a/package.json b/package.json index 45ea5e48..80e5f79d 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "url": "https://github.com/pelias/api/issues" }, "engines": { - "node": ">=6.0.0" + "node": ">=8.0.0" }, "dependencies": { "@mapbox/geojson-extent": "^0.3.1", @@ -85,7 +85,7 @@ "test" ], "release": { - "branch": "production", + "branch": "master", "success": [] } }