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

chore: update React-Native example app #4888

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,12 +241,13 @@ jobs:
- name: Show installed RTK versions
run: yarn info @reduxjs/toolkit && yarn why @reduxjs/toolkit

- name: Set up JDK 17 for React Native build
- name: Set up JDK 21 for React Native build
if: matrix.example == 'react-native' || matrix.example == 'expo'
uses: actions/setup-java@v4
with:
java-version: '17.x'
java-version: '21.x'
distribution: 'temurin'
cache: 'gradle'

- name: Build example
env:
Expand Down
34 changes: 0 additions & 34 deletions examples/publish-ci/react-native/.eslintrc.json

This file was deleted.

18 changes: 15 additions & 3 deletions examples/publish-ci/react-native/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate
ios/.xcode.env.local
**/.xcode.env.local

# Android/IntelliJ
#
build/
dist/
.idea
.gradle
local.properties
Expand All @@ -33,13 +34,13 @@ local.properties
.cxx/
*.keystore
!debug.keystore
.kotlin/

# node.js
#
node_modules/
npm-debug.log
yarn-error.log
.yarn/

# fastlane
#
Expand All @@ -57,7 +58,7 @@ yarn-error.log
*.jsbundle

# Ruby / CocoaPods
/ios/Pods/
**/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
Expand All @@ -66,5 +67,16 @@ yarn-error.log
# testing
/coverage

# Yarn
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

#IDE
.vscode

.yalc/
yalc.lock
3 changes: 2 additions & 1 deletion examples/publish-ci/react-native/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"arrowParens": "avoid",
"semi": false
"semi": false,
"singleQuote": true
}
Loading
Loading