mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
475b835e43
Summary: After disabling the E2E tests, we lost a test that was verifying that Hermes works well with the latest version of React Native for iOS This change introduce this test back in GH actions ## Changelog: [Internal] Add tests for Hermes-Xcode integration to GH Actions Pull Request resolved: https://github.com/facebook/react-native/pull/41187 Test Plan: CI is green 🤞 Reviewed By: NickGerleman Differential Revision: D50737860 Pulled By: cipolleschi fbshipit-source-id: f4bc09be879af7aba0ca42f1b7e407a5d5dc0986
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
name: ios-tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
|
|
jobs:
|
|
test_ios_rntester-Hermes:
|
|
runs-on: macos-latest-large
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v4
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: 'yarn'
|
|
- name: Yarn Install
|
|
run: yarn install
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
bundler-cache: true
|
|
ruby-version: '3.2'
|
|
- name: Cache cocoapods
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: packages/rn-tester/Pods
|
|
key: ${{ runner.os }}-RNTesterPods-${{ hashFiles('packages/rn-tester/Podfile.lock') }}-${{ hashFiles('packages/rn-tester/Podfile') }}
|
|
- name: Pod Install
|
|
run: |
|
|
cd packages/rn-tester
|
|
bundle install
|
|
bundle exec pod install
|
|
- name: Install XCBeautify
|
|
run: brew install xcbeautify
|
|
- name: Build iOS
|
|
run: ./scripts/objc-test.sh
|