From af03de48d89175a9ef712228786a83968ff788df Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 2 Apr 2019 18:25:28 -0400 Subject: build: don't use lint-ci on Travis The `lint-ci` Makefile target differs from `lint` in that it writes to a tap file and not stdout and also stops execution when an error is found (e.g. if JavaScript linting fails the C++ and docs linting are not run). The switch to `lint-ci` was to enable Python linting. Revert to `lint` and add the `lint-py` target. PR-URL: https://github.com/nodejs/node/pull/27062 Reviewed-By: Refael Ackermann Reviewed-By: Ruben Bridgewater --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 8605832f21..5ca5740a0c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ jobs: install: - make lint-py-build || true script: - - NODE=$(which node) make lint-ci + - NODE=$(which node) make lint lint-py - name: "Compile V8" language: cpp -- cgit v1.2.3