We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47a579b commit d2806adCopy full SHA for d2806ad
tools/ci/circle/script
@@ -225,13 +225,19 @@ lint() {
225
echo 'Linting filenames...' >&2
226
make lint-filenames >> "$1" 2>&1
227
if [[ "$?" -ne 0 ]]; then
228
- echo 'Linting failed.' >&2
+ echo 'Linting filenames failed.' >&2
229
return 1
230
fi
231
echo 'Linting package.json files...' >&2
232
make lint-pkg-json >> "$1" 2>&1
233
234
+ echo 'Linting package.json failed.' >&2
235
+ return 1
236
+ fi
237
+ echo 'Linting Markdown files...' >&2
238
+ make lint-markdown >> "$1" 2>&1
239
+ if [[ "$?" -ne 0 ]]; then
240
+ echo 'Linting Markdown failed.' >&2
241
242
243
echo 'Linting passed.' >&2
0 commit comments