We use storybook in our React project. Occasionally, we'll break something in it (usually when we refactor and do something like move a file). Storybook will still deploy properly, but when you open it, you get a big red card for the error.
Is there some command-line method (without going crazy with PhantomJS or something), that we could hook into our pre-push to make sure we haven't broken Storybook (at least at a high level)?
Try this: https://github.com/mthuret/storybook-addon-specifications
In every storybook write simple test in which the storybook is mounted. Automaticall test run after every commit guarantees that storybook сorrectly opens.