From 41e257a1a46f6d1c2c4a046a2079bcce1175da1a Mon Sep 17 00:00:00 2001 From: Kyle Welch Date: Wed, 31 Oct 2018 13:28:05 -0500 Subject: [PATCH] chore(deploy): Update deploy to use LTS node host (#44) ## Description After disabling the `node` host due to a build error, the release was not deployed since it was set to run on the `node` host. Going forward we are going to use the node LTS as our deploy host. ## How Has This Been Tested? ## Screenshots (if appropriate): ## Checklist: * [x] I have read the [**CONTRIBUTING** document](https://github.com/eventbrite/eventbrite-sdk-javascript/blob/master/CONTRIBUTING.md). * [x] I have updated the documentation accordingly. * [x] I have added tests to cover my changes. * [x] I have run `yarn validate` to ensure that tests, typescript and linting are all in order. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 405a494..4438ff2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,4 +19,4 @@ deploy: provider: script script: npx semantic-release on: - node: "node" + node: "10"