Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React Native new architecture support done in android and ios #526

Merged
merged 8 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 27 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
version: 2.1
orbs:
rn: react-native-community/react-native@3.0.0
rn: react-native-community/react-native@8.0.1

jobs:
checkout_code:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: "20.18.3"
steps:
- checkout
- persist_to_workspace:
root: .
paths: .

analyse_js:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: "20.18.3"
steps:
- attach_workspace:
at: .
Expand All @@ -22,7 +26,9 @@ jobs:
command: yarn lint

type_check:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: "20.18.3"
steps:
- attach_workspace:
at: .
Expand All @@ -31,31 +37,32 @@ jobs:
name: Check for Typings
command: yarn type-check


release:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: "20.18.3"
steps:
- attach_workspace:
at: .
- rn/yarn_install
- run:
name: Publish to NPM
command: yarn semantic-release || true
name: Publish to NPM
command: yarn semantic-release || true

workflows:
ci:
jobs:
- checkout_code
- analyse_js:
requires:
- checkout_code
- type_check:
requires:
- checkout_code
- release:
requires:
- analyse_js
- type_check
filters:
- checkout_code
- analyse_js:
requires:
- checkout_code
- type_check:
requires:
- checkout_code
- release:
requires:
- analyse_js
- type_check
filters:
branches:
only: master
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ dist
plugin/build

# user-specific files
local.properties
local.properties

.xcode.env.local
126 changes: 0 additions & 126 deletions android/android.iml

This file was deleted.

Loading