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

fix: ios ci invalid options #262

Merged
merged 2 commits into from
Nov 10, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Install Podfiles
run: cd example && npx pod-install
- name: Build example app
run: yarn ios
run: yarn ios --no-packager
# windows:
# runs-on: windows-latest
# strategy:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"!android/**/build/*"
],
"scripts": {
"ios": "react-native run-ios --project-path \"./example/ios\"",
"ios": "react-native run-ios",
"android": "react-native run-android --root example",
"windows": "cd example && react-native run-windows",
"start": "react-native start",
Expand Down
4 changes: 2 additions & 2 deletions react-native.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const project = (() => {
const fs = require('fs');
const path = require('path');
try {
const { configureProjects } = require('react-native-test-app');
const {configureProjects} = require('react-native-test-app');

return configureProjects({
android: {
Expand Down Expand Up @@ -42,5 +42,5 @@ module.exports = {
},
},
},
...(project ? { project } : undefined),
...(project ? {project} : undefined),
};
Loading