[Bug]: Build fails in ci/cd conditions due to file-system-cache dependency #25504
-
Describe the bugBuilds seem to fail in GitHub actions / Vercel while passing locally (via same node version, frozen lockfile). Issue seems to come from running
Googling around, doesn't bring much up besides this being a telemetry issue, but even with
Issue still persists To ReproduceBuild storybook in ci SystemEnvironment Info:
System:
OS: macOS 13.4.1
CPU: (10) arm64 Apple M1 Pro
Binaries:
Node: 20.3.1 - /opt/homebrew/bin/node
Yarn: 1.22.19 - /opt/homebrew/bin/yarn
npm: 9.6.7 - /opt/homebrew/bin/npm
Browsers:
Chrome: 114.0.5735.198
Firefox: 112.0.2
Safari: 16.5.1 Additional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Setting |
Beta Was this translation helpful? Give feedback.
-
Add
if you are using yarn. For npm https://docs.npmjs.com/cli/v8/configuring-npm/package-json#overrides It's a quick fix which you can use to control version of buggy package. It's a temporary solution. We need to wait for the fix of it in original https://github.com/philcockfield/file-system-cache repo |
Beta Was this translation helpful? Give feedback.
-
I have the same problem from today compilation the workarrounde works fine
|
Beta Was this translation helpful? Give feedback.
-
Storybook depends on [email protected]. Our solution was indeed to use "resolutions": {
"types-ramda": "0.29.4",
} Maybe someone benefits from this analysis. |
Beta Was this translation helpful? Give feedback.
Add
if you are using yarn.
For npm https://docs.npmjs.com/cli/v8/configuring-npm/package-json#overrides
It's a quick fix which you can use to control version of buggy package. It's a temporary solution. We need to wait for the fix of it in original https://github.com/philcockfield/file-system-cache repo