Skip to content

Commit 57ed042

Browse files
committed
test(ci): fix patch-package generation
when react-native started installing by default they used npm, which caused there to be an npm/yarn conflict and that in turn confused patch-package skip install during react-native template init then use yarn
1 parent a1f4710 commit 57ed042

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/create_test_patches.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,9 @@ jobs:
7171
done
7272
ls -la $HOME/packages/
7373
cd $HOME
74-
npx react-native init template
74+
npx react-native init template --skip-install
7575
cd template
76+
yarn
7677
yarn add patch-package --save-dev
7778
mkdir patches || true
7879
for PACKAGE in $PACKAGE_LIST; do

0 commit comments

Comments
 (0)