From 613afbab7f30748ba767b055f23d0d294562805f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Tue, 6 Feb 2018 09:53:30 -0800 Subject: [PATCH] Rename workflow steps Summary: Trivial - shorten the workflow steps to ease reading of current status when looking at workflows dashboard. Closes https://github.com/facebook/react-native/pull/17874 Differential Revision: D6912599 Pulled By: hramos fbshipit-source-id: c4bb08923eb790960b883a7a5f6e4652663982d8 --- .circleci/config.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 50cbeb3a41f..d5250f3d234 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -235,7 +235,7 @@ version: 2 jobs: # Runs JavaScript lint and flow checks. # Currently will fail a PR if lint/flow raises issues. - run-js-checks: + js-checks: <<: *defaults docker: - image: circleci/node:8 @@ -256,7 +256,7 @@ jobs: path: ~/reports/junit # Runs JavaScript tests on Node 8 - test-js-node-8: + js-node-8: <<: *defaults docker: - image: circleci/node:8 @@ -276,7 +276,7 @@ jobs: path: ~/reports/junit # Runs JavaScript tests on Node 6 - test-js-node-6: + js-node-6: <<: *defaults docker: - image: circleci/node:6 @@ -296,7 +296,7 @@ jobs: path: ~/reports/junit # Runs unit tests on iOS devices - test-objc-ios: + objc-ios: <<: *defaults macos: xcode: "9.0" @@ -319,7 +319,7 @@ jobs: path: ~/reports/junit # Runs unit tests on tvOS devices - test-objc-tvos: + objc-tvos: <<: *defaults macos: xcode: "9.0" @@ -342,7 +342,7 @@ jobs: path: ~/reports/junit # Runs end to end tests - test-e2e-objc-ios: + objc-ios-e2e: <<: *defaults macos: xcode: "9.0" @@ -424,7 +424,7 @@ jobs: fi # Runs unit tests tests on Android - test-android: + android: <<: *android_defaults steps: - checkout @@ -533,31 +533,31 @@ workflows: jobs: # Run lint and flow checks - - run-js-checks: + - js-checks: filters: *filter-ignore-gh-pages # Test JavaScript on Node 8 and 6 - - test-js-node-8: + - js-node-8: filters: *filter-ignore-gh-pages - - test-js-node-6: + - js-node-6: filters: *filter-ignore-gh-pages # Test Android - - test-android: + - android: filters: *filter-ignore-gh-pages # Test iOS & tvOS - - test-objc-ios: + - objc-ios: filters: *filter-ignore-gh-pages - - test-objc-tvos: + - objc-tvos: filters: *filter-ignore-gh-pages # End-to-end tests - - test-e2e-objc-ios: + - objc-ios-e2e: filters: *filter-ignore-gh-pages requires: - - test-objc-ios - - test-js-node-8 + - objc-ios + - js-node-8 # If we are on a stable branch, deploy to `npm` - hold: