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>
pull/27062/head
Richard Lau 2019-04-02 18:25:28 -04:00
parent 2f1ed5c063
commit af03de48d8
1 changed files with 1 additions and 1 deletions

View File

@ -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