From f8fa50f5effcacfad9369e1014ff7266159cccfd Mon Sep 17 00:00:00 2001 From: Refael Ackermann Date: Tue, 6 Nov 2018 17:57:56 -0500 Subject: [PATCH] build: try to use latest node binary for Travis linter --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index efefa0323f99f7..44cdf5f7bed8b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,13 @@ os: linux matrix: include: - name: "Linter" - node_js: "latest" + language: node_js + node_js: + - "node" env: - NODE=$(which node) script: + - node -v - make lint # Lint the first commit in the PR. - if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then