Browse Source

🔧 fix format check cmd

build_and_test_config
hallouma875 5 years ago
parent
commit
c1e0c9eac6
  1. 4
      .circleci/config.yml

4
.circleci/config.yml

@ -12,7 +12,7 @@ aliases:
install_node_modules: &install_node_modules install_node_modules: &install_node_modules
run: run:
command: yarn install command: yarn install
check-formatting: &check-formatting
check_formatting: &check_formatting
run: run:
command: yarn format:check command: yarn format:check
save_cache: &save_cache save_cache: &save_cache
@ -29,6 +29,7 @@ jobs:
executor: node executor: node
steps: steps:
- checkout - checkout
- <<: *check_formatting
- <<: *restore_cache - <<: *restore_cache
- <<: *install_node_modules - <<: *install_node_modules
- <<: *save_cache - <<: *save_cache
@ -39,7 +40,6 @@ jobs:
executor: node executor: node
steps: steps:
- checkout - checkout
- <<: *check-formatting
- <<: *restore_cache - <<: *restore_cache
- <<: *install_node_modules - <<: *install_node_modules
- run: - run:

Loading…
Cancel
Save