Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade storybook #209

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ jobs:
# Re-enable, once we don't have weird depdenency issues, because of the shared src/ folder
# - run: npx nx affected -t lint test build
- run: npx nx run-many --all -t lint test build
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: always()
with:
name: react-spa playwright-report
path: |
examples/react-spa/playwright-report/
examples/react-spa/test-results/
retention-days: 7
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: always()
with:
name: preact-spa playwright-report
path: |
examples/preact-spa/playwright-report/
examples/preact-spa/test-results/
retention-days: 7
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: always()
with:
name: nextjs-spa playwright-report
Expand Down
7 changes: 1 addition & 6 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,7 @@ export default {
plugins: [vanillaExtractPlugin()],
})
},
features: {
storyStoreV7: true,
},
docs: {
autodocs: true,
},
docs: {},
}
/**
* This function is used to resolve the absolute path of a package.
Expand Down
1 change: 1 addition & 0 deletions .storybook/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,4 @@ export const withIntl = (StoryFn: StoryFn, context: Context) => (
)

export const decorators = [withTheme, withIntl]
export const tags = ["autodocs"]
Loading
Loading