Skip to content

Commit ea221ff

Browse files
committedAug 25, 2022
chore: udpate workflows config.
1 parent b06e923 commit ea221ff

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed
 

‎.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: actions/setup-node@v2
1717
with:
18-
node-version: 14
18+
node-version: 16
1919

2020
- run: npm install
2121
- run: npm run hoist

‎.github/workflows/npm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: 14
14+
node-version: 16
1515

1616
- run: npm install
1717
- run: npm run hoist

‎lerna.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
22
"packages": ["packages/*", "website"],
3-
"version": "independent",
4-
"useWorkspaces": true
3+
"version": "independent"
54
}

‎packages/react-radio/src/__test__/RadioGroup.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('<RadioGroup />', () => {
1818
expect(json.type).toBe('div');
1919
expect(json.props.className).toBe('w-radio-group');
2020
if (json.children) {
21-
expect(json.children.length).toBe(2);
21+
expect(json.children.length).toBe(1);
2222
}
2323
}
2424
expect(component.root.props.value).toBe('人妖');

0 commit comments

Comments
 (0)
Please sign in to comment.