mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-24 04:16:00 +08:00
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
This commit is contained in:
committed by
Facebook Github Bot
parent
62d01006a1
commit
613afbab7f
@@ -235,7 +235,7 @@ version: 2
|
|||||||
jobs:
|
jobs:
|
||||||
# Runs JavaScript lint and flow checks.
|
# Runs JavaScript lint and flow checks.
|
||||||
# Currently will fail a PR if lint/flow raises issues.
|
# Currently will fail a PR if lint/flow raises issues.
|
||||||
run-js-checks:
|
js-checks:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/node:8
|
- image: circleci/node:8
|
||||||
@@ -256,7 +256,7 @@ jobs:
|
|||||||
path: ~/reports/junit
|
path: ~/reports/junit
|
||||||
|
|
||||||
# Runs JavaScript tests on Node 8
|
# Runs JavaScript tests on Node 8
|
||||||
test-js-node-8:
|
js-node-8:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/node:8
|
- image: circleci/node:8
|
||||||
@@ -276,7 +276,7 @@ jobs:
|
|||||||
path: ~/reports/junit
|
path: ~/reports/junit
|
||||||
|
|
||||||
# Runs JavaScript tests on Node 6
|
# Runs JavaScript tests on Node 6
|
||||||
test-js-node-6:
|
js-node-6:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/node:6
|
- image: circleci/node:6
|
||||||
@@ -296,7 +296,7 @@ jobs:
|
|||||||
path: ~/reports/junit
|
path: ~/reports/junit
|
||||||
|
|
||||||
# Runs unit tests on iOS devices
|
# Runs unit tests on iOS devices
|
||||||
test-objc-ios:
|
objc-ios:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
macos:
|
macos:
|
||||||
xcode: "9.0"
|
xcode: "9.0"
|
||||||
@@ -319,7 +319,7 @@ jobs:
|
|||||||
path: ~/reports/junit
|
path: ~/reports/junit
|
||||||
|
|
||||||
# Runs unit tests on tvOS devices
|
# Runs unit tests on tvOS devices
|
||||||
test-objc-tvos:
|
objc-tvos:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
macos:
|
macos:
|
||||||
xcode: "9.0"
|
xcode: "9.0"
|
||||||
@@ -342,7 +342,7 @@ jobs:
|
|||||||
path: ~/reports/junit
|
path: ~/reports/junit
|
||||||
|
|
||||||
# Runs end to end tests
|
# Runs end to end tests
|
||||||
test-e2e-objc-ios:
|
objc-ios-e2e:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
macos:
|
macos:
|
||||||
xcode: "9.0"
|
xcode: "9.0"
|
||||||
@@ -424,7 +424,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Runs unit tests tests on Android
|
# Runs unit tests tests on Android
|
||||||
test-android:
|
android:
|
||||||
<<: *android_defaults
|
<<: *android_defaults
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
@@ -533,31 +533,31 @@ workflows:
|
|||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
# Run lint and flow checks
|
# Run lint and flow checks
|
||||||
- run-js-checks:
|
- js-checks:
|
||||||
filters: *filter-ignore-gh-pages
|
filters: *filter-ignore-gh-pages
|
||||||
|
|
||||||
# Test JavaScript on Node 8 and 6
|
# Test JavaScript on Node 8 and 6
|
||||||
- test-js-node-8:
|
- js-node-8:
|
||||||
filters: *filter-ignore-gh-pages
|
filters: *filter-ignore-gh-pages
|
||||||
- test-js-node-6:
|
- js-node-6:
|
||||||
filters: *filter-ignore-gh-pages
|
filters: *filter-ignore-gh-pages
|
||||||
|
|
||||||
# Test Android
|
# Test Android
|
||||||
- test-android:
|
- android:
|
||||||
filters: *filter-ignore-gh-pages
|
filters: *filter-ignore-gh-pages
|
||||||
|
|
||||||
# Test iOS & tvOS
|
# Test iOS & tvOS
|
||||||
- test-objc-ios:
|
- objc-ios:
|
||||||
filters: *filter-ignore-gh-pages
|
filters: *filter-ignore-gh-pages
|
||||||
- test-objc-tvos:
|
- objc-tvos:
|
||||||
filters: *filter-ignore-gh-pages
|
filters: *filter-ignore-gh-pages
|
||||||
|
|
||||||
# End-to-end tests
|
# End-to-end tests
|
||||||
- test-e2e-objc-ios:
|
- objc-ios-e2e:
|
||||||
filters: *filter-ignore-gh-pages
|
filters: *filter-ignore-gh-pages
|
||||||
requires:
|
requires:
|
||||||
- test-objc-ios
|
- objc-ios
|
||||||
- test-js-node-8
|
- js-node-8
|
||||||
|
|
||||||
# If we are on a stable branch, deploy to `npm`
|
# If we are on a stable branch, deploy to `npm`
|
||||||
- hold:
|
- hold:
|
||||||
|
|||||||
Reference in New Issue
Block a user