mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
Disable storybook steps in website-related GH workflows (#31723)
Related to: https://github.com/fleetdm/fleet/issues/31720 Changes: - Commented out the step that builds Storybook in the "Test Fleet website" and "Deploy Fleet website" workflows. There is an error caused by an incompatible version of a Storybook dependency that is preventing these workflows from running.
This commit is contained in:
parent
002c381c97
commit
d53448618c
2 changed files with 6 additions and 4 deletions
5
.github/workflows/deploy-fleet-website.yml
vendored
5
.github/workflows/deploy-fleet-website.yml
vendored
|
|
@ -66,8 +66,9 @@ jobs:
|
|||
with:
|
||||
go-version-file: 'go.mod'
|
||||
|
||||
# Download top-level dependencies and build Storybook in the website's assets/ folder
|
||||
- run: npm install --legacy-peer-deps && npm run build-storybook -- -o ./website/assets/storybook --loglevel verbose
|
||||
# 2025-08-07: The Storybook steps in website workflows have been temporarily disabled until a compatability issue with the @storybook/test-runner has been resolved. See https://github.com/fleetdm/fleet/issues/31720 for more information.
|
||||
# # Download top-level dependencies and build Storybook in the website's assets/ folder
|
||||
# - run: npm install --legacy-peer-deps && npm run build-storybook -- -o ./website/assets/storybook --loglevel verbose
|
||||
|
||||
# Now start building!
|
||||
# > …but first, get a little crazy for a sec and delete the top-level package.json file
|
||||
|
|
|
|||
5
.github/workflows/test-website.yml
vendored
5
.github/workflows/test-website.yml
vendored
|
|
@ -45,8 +45,9 @@ jobs:
|
|||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
# Download top-level dependencies and build Storybook in the website's assets/ folder.
|
||||
- run: npm install --legacy-peer-deps && npm run build-storybook -- -o ./website/assets/storybook --loglevel verbose
|
||||
# 2025-08-07: The Storybook steps in website workflows have been temporarily disabled until a compatability issue with the @storybook/test-runner has been resolved. See https://github.com/fleetdm/fleet/issues/31720 for more information.
|
||||
# # Download top-level dependencies and build Storybook in the website's assets/ folder.
|
||||
# - run: npm install --legacy-peer-deps && npm run build-storybook -- -o ./website/assets/storybook --loglevel verbose
|
||||
|
||||
# Now start building!
|
||||
# > …but first, get a little crazy for a sec and delete the top-level package.json file
|
||||
|
|
|
|||
Loading…
Reference in a new issue