WIP: Add Node 10 job to workflow
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/19299 Differential Revision: D9413583 Pulled By: hramos fbshipit-source-id: 61ac48e46feaba5f1ec80362b5e1c7f2787ee167
This commit is contained in:
parent
1658a4c080
commit
91bba30312
|
@ -433,6 +433,21 @@ jobs:
|
|||
- store_test_results:
|
||||
path: ~/react-native/reports/junit
|
||||
|
||||
# Run JavaScript tests on Node 10
|
||||
test_node10:
|
||||
<<: *defaults
|
||||
docker:
|
||||
- image: circleci/node:10
|
||||
environment:
|
||||
- PATH: "/opt/yarn/yarn-v1.5.1/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
||||
steps:
|
||||
- checkout
|
||||
- run: *setup-artifacts
|
||||
- run: *yarn
|
||||
- run: *run-js-tests
|
||||
- store_test_results:
|
||||
path: ~/react-native/reports/junit
|
||||
|
||||
# Runs unit tests on iOS and Apple TV devices
|
||||
test_objc:
|
||||
<<: *macos_defaults
|
||||
|
@ -665,6 +680,10 @@ workflows:
|
|||
requires:
|
||||
- checkout_code
|
||||
|
||||
# Test JavaScript and Node 10 compatibility
|
||||
- test_node10:
|
||||
filters: *filter-ignore-gh-pages
|
||||
|
||||
# Test Android
|
||||
- test_android:
|
||||
filters: *filter-ignore-gh-pages
|
||||
|
|
Loading…
Reference in New Issue