Skip to content

Commit

Permalink
Fix CI race condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Jun 22, 2020
1 parent 535d8de commit 1f885a3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Expand Up @@ -84,27 +84,27 @@ build-no-bundle-ci: bootstrap-only
watch: build-no-bundle
BABEL_ENV=development $(YARN) gulp watch

code-quality-ci: flowcheck-ci lint-ci
code-quality-ci: build-no-bundle-ci
$(MAKE) flowcheck-ci & $(MAKE) lint-ci

flowcheck-ci: bootstrap-flowcheck

flowcheck-ci:
$(MAKE) flow

code-quality: flow lint

flow:
$(YARN) flow check --strip-root

bootstrap-flowcheck: build-no-bundle-ci

lint-ci: lint-js-ci lint-ts-ci check-compat-data-ci

lint-js-ci: bootstrap-only
lint-js-ci:
$(MAKE) lint-js

lint-ts-ci: bootstrap-flowcheck
lint-ts-ci:
$(MAKE) lint-ts

check-compat-data-ci: build-no-bundle-ci
check-compat-data-ci:
$(MAKE) check-compat-data

lint: lint-js lint-ts
Expand Down

0 comments on commit 1f885a3

Please sign in to comment.