From 254c55c037c72a32b9e33a8cc40c5eac07f56b8d Mon Sep 17 00:00:00 2001 From: Maciek Sitkowski Date: Sun, 26 Nov 2023 04:53:57 +0100 Subject: [PATCH] add missing step --- .github/workflows/ci.yml | 3 +++ apps/docs/stories/card.stories.tsx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9b921c..fbf21b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -232,6 +232,9 @@ jobs: - name: 📥 Install Dependencies run: pnpm install + - name: 📦 Build libs + run: pnpm build:ui + - name: 🏗️ Build run: pnpm build:docs diff --git a/apps/docs/stories/card.stories.tsx b/apps/docs/stories/card.stories.tsx index cf69f7e..956dfad 100644 --- a/apps/docs/stories/card.stories.tsx +++ b/apps/docs/stories/card.stories.tsx @@ -13,7 +13,7 @@ export const Primary: Story = { render: props => Hello, name: 'Card', args: { - children: 'Some card content', + children: 'Some card content!', title: 'Card Title', href: '#some-link', },