Skip to content

Commit

Permalink
WIP: Add Node 10 job to workflow
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: facebook#19299

Differential Revision: D9413583

Pulled By: hramos

fbshipit-source-id: 61ac48e46feaba5f1ec80362b5e1c7f2787ee167
  • Loading branch information
hramos authored and facebook-github-bot committed Aug 21, 2018
1 parent ebbd56b commit 59c5c05
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 59c5c05

Please sign in to comment.