Skip to content

Commit

Permalink
fix: ios ci invalid options (#262)
Browse files Browse the repository at this point in the history
* fix: ios ci

* fix: ios ci
  • Loading branch information
Naturalclar authored Nov 10, 2024
1 parent 9e152fe commit 8cfaf1c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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),
};

0 comments on commit 8cfaf1c

Please sign in to comment.