Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 46f6b90

Browse files
committed
ci: another typo fixed :)
1 parent 4f2c142 commit 46f6b90

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ jobs:
5656
run: pnpm lint
5757

5858
- name: Build packages
59-
run:
60-
NODE_OPTIONS=--max_old_space_size=8192 pnpm build
61-
--max_old_space_size=16384
59+
run: export NODE_OPTIONS="--max_old_space_size=16384" && pnpm build
6260

6361
- name: Run tests
6462
run: pnpm test:ci

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: pnpm lint
5757

5858
- name: Build packages
59-
run: NODE_OPTIONS=--max_old_space_size=16384 pnpm build
59+
run: export NODE_OPTIONS=--max_old_space_size=16384 && pnpm build
6060

6161
- name: Run tests
6262
run: pnpm test:ci

packages/styled/examples/styled.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
>
1717
Hot pink
1818
</chakra.button>
19+
<CButton />
1920
</div>
2021
</template>
2122

@@ -41,8 +42,13 @@ function handleClick(e: MouseEvent) {
4142
const CButton = defineComponent({
4243
setup() {
4344
return () => (
44-
<Button height="32px" onClick={handleClick}>
45-
Main Button
45+
<Button
46+
height="32px"
47+
bg="teal.100"
48+
_hover={{ bg: "teal.200" }}
49+
onClick={handleClick}
50+
>
51+
Yo this is a button
4652
</Button>
4753
)
4854
},

0 commit comments

Comments
 (0)