Skip to content

Commit d7279a6

Browse files
authored
[Monorepo] Fix yarn validation CI (#3524)
## Description `yarn validation` CI performs `yarn install` in all changed directories that contain `package.json`. However, we have some directories which should not undergo this procedure: - DrawerLayout - ReanimatedDrawerLayout - Swipeable - ReanimatedSwipeable - jest-utils ## Test plan Hopefully CI on main monorepo PR passes
1 parent 8c725aa commit d7279a6

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/yarn-validation.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ jobs:
4444
files: |
4545
**/package.json
4646
**/yarn.lock
47+
files_ignore: |
48+
packages/react-native-gesture-handler/DrawerLayout/package.json
49+
packages/react-native-gesture-handler/ReanimatedDrawerLayout/package.json
50+
packages/react-native-gesture-handler/Swipeable/package.json
51+
packages/react-native-gesture-handler/ReanimatedSwipeable/package.json
52+
packages/react-native-gesture-handler/jest-utils/package.json
4753
4854
- name: Get list of changed directories
4955
id: changed-dirs

0 commit comments

Comments
 (0)