From cfd6f1960955f730593ee57c743ccd7f2874299c Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Tue, 14 May 2024 15:54:49 -0500 Subject: [PATCH] fix(ci): use modern yarn syntax to add packages during patchset generation --- .github/workflows/create_test_patches.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create_test_patches.yml b/.github/workflows/create_test_patches.yml index be506d868b..aa647900f0 100644 --- a/.github/workflows/create_test_patches.yml +++ b/.github/workflows/create_test_patches.yml @@ -77,7 +77,7 @@ jobs: npx react-native init template --skip-install --skip-git-init cd template yarn - yarn add patch-package --save-dev + yarn add patch-package --dev mkdir patches || true for PACKAGE in $PACKAGE_LIST; do echo "Installing package $PACKAGE into fresh template app, then clobbering with PR version"