Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Lau <riclau@uk.ibm.com>2019-04-03 01:25:28 +0300
committerRichard Lau <riclau@uk.ibm.com>2019-04-05 04:27:54 +0300
commitaf03de48d89175a9ef712228786a83968ff788df (patch)
tree0a2cfb2831b4b9332b9e61af4342b9d730413f48 /.travis.yml
parent2f1ed5c0637a7bdd079136d2cb80f6a4184ae299 (diff)
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 <refack@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 8605832f213..5ca5740a0cd 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