Skip to content

Commit a8ff637

Browse files
authored
chore(🐙): fix ci (#3518)
1 parent efe4169 commit a8ff637

File tree

5 files changed

+525
-98
lines changed

5 files changed

+525
-98
lines changed

.github/workflows/test-skia-package.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,6 @@ jobs:
6363
npm install -g expo-cli eas-cli
6464
expo --version
6565
66-
- name: Setup Xcode
67-
uses: maxim-lobanov/setup-xcode@v1
68-
with:
69-
xcode-version: latest-stable
70-
7166
- name: List available simulators
7267
run: xcrun simctl list devices
7368

apps/example/jestSetup.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ jest.mock("react-native-gesture-handler", () => {
4747
};
4848
});
4949

50-
jest.mock("@react-native-community/slider", () => "Slider");
51-
5250
jest.mock("react-native-screens", () => ({
5351
...jest.requireActual("react-native-screens"),
5452
enableScreens: jest.fn(),

apps/example/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {
6-
"android": "react-native run-android",
76
"pod:install:ios": "pod install --project-directory=ios",
87
"pod:install:catalyst": "pod install --project-directory=ios && node ios/enable-catalyst.js",
98
"pod:install:macos": "pod install --project-directory=macos",
10-
"build:android": "npm run mkdist && react-native bundle --entry-file index.js --platform android --dev true --bundle-output dist/main.android.jsbundle --assets-dest dist/res && cd android && ./gradlew assembleDebug --warning-mode all",
11-
"build:ios": "npm run mkdist && react-native bundle --entry-file index.js --platform ios --dev true --bundle-output dist/main.ios.jsbundle --assets-dest dist",
9+
"build:android": "rnc-cli build-android",
10+
"build:ios": "rnc-cli build-ios",
1211
"build:macos": "react-native build-macos --scheme ReactTestApp --mode Debug",
13-
"ios": "react-native run-ios",
12+
"ios": "rnc-cli run-ios",
13+
"android": "rnc-cli run-android",
1414
"lint": "eslint . --ext .ts,.tsx --max-warnings 0 --cache --fix",
1515
"mkdist": "node -e \"require('node:fs').mkdirSync('dist', { recursive: true, mode: 0o755 })\"",
1616
"pod:install": "cd ios && pod install",
1717
"test": "jest",
1818
"tsc": "tsc --noEmit",
19-
"start": "react-native start"
19+
"start": "rnc-cli start"
2020
},
2121
"dependencies": {
2222
"@callstack/react-native-visionos": "^0.75.0",

package.json

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,5 @@
3434
"devDependencies": {
3535
"react-native-test-app": "^4.2.0",
3636
"turbo": "^2.1.1"
37-
},
38-
"resolutions": {
39-
"@react-native-community/cli": "18.0.1",
40-
"@react-native-community/cli-clean": "18.0.1",
41-
"@react-native-community/cli-config": "18.0.1",
42-
"@react-native-community/cli-config-android": "18.0.1",
43-
"@react-native-community/cli-config-apple": "18.0.1",
44-
"@react-native-community/cli-debugger-ui": "18.0.1",
45-
"@react-native-community/cli-doctor": "18.0.1",
46-
"@react-native-community/cli-hermes": "18.0.1",
47-
"@react-native-community/cli-platform-android": "18.0.1",
48-
"@react-native-community/cli-platform-apple": "18.0.1",
49-
"@react-native-community/cli-platform-ios": "18.0.1",
50-
"@react-native-community/cli-server-api": "18.0.1",
51-
"@react-native-community/cli-tools": "18.0.1",
52-
"@react-native-community/cli-types": "18.0.1"
5337
}
5438
}

0 commit comments

Comments
 (0)