File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
extends: default
3
+ ignore: |
4
+ ui/react-app/node_modules
3
5
4
6
rules:
5
7
braces:
Original file line number Diff line number Diff line change 49
49
GOTEST := $(GO) test
50
50
GOTEST_DIR :=
51
51
ifneq ($(CIRCLE_JOB),)
52
- ifneq ($(shell command -v gotestsum > /dev/null),)
52
+ ifneq ($(shell command -v gotestsum 2 > /dev/null),)
53
53
GOTEST_DIR := test-results
54
54
GOTEST := gotestsum --junitfile $(GOTEST_DIR)/unit-tests.xml --
55
55
endif
@@ -182,7 +182,7 @@ endif
182
182
.PHONY: common-yamllint
183
183
common-yamllint:
184
184
@echo ">> running yamllint on all YAML files in the repository"
185
- ifeq (, $(shell command -v yamllint > /dev/null))
185
+ ifeq (, $(shell command -v yamllint 2 > /dev/null))
186
186
@echo "yamllint not installed so skipping"
187
187
else
188
188
yamllint .
You can’t perform that action at this time.
0 commit comments