From 415e5773bb430730b920cea3eba2abacef2bf2d4 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 26 Jan 2023 14:18:07 -0800 Subject: [PATCH] Generate dynamic storybook stories at build time --- .github/workflows/build-storybook.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-storybook.yml b/.github/workflows/build-storybook.yml index 58fb50a6c..e6d5a1387 100644 --- a/.github/workflows/build-storybook.yml +++ b/.github/workflows/build-storybook.yml @@ -20,6 +20,9 @@ jobs: run: | # Install npm packages and build the Storybook files cd web npm install --include-dev --force + cd .storybook/tools + ./generate-stories.sh + cd - npm run build-storybook -- -o ../docs/components - name: Dispatch event to web site