Skip to content

Commit aa0f4ab

Browse files
committed
chore: change verify workflow to not use yarn on nested packages
1 parent c92fa94 commit aa0f4ab

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/verify.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,8 @@ jobs:
1818
run: yarn
1919
- name: Custom React version
2020
run: |
21-
echo "enableImmutableInstalls: false" > ./.yarnrc.yml
22-
yarn add react@${{ matrix.react }} -D
23-
cd packages/core
24-
yarn add react@${{ matrix.react }} -D
25-
cd ../..
21+
echo "nodeLinker: node-modules\nenableImmutableInstalls: false" > ./.yarnrc.yml
22+
npm pkg set devDependencies.react=${{matrix.react}} --ws
2623
cat ./.yarnrc.yml
2724
yarn
2825
- name: Build

0 commit comments

Comments
 (0)