Skip to content

Commit

Permalink
Merge branch 'main' into new-identity-flow
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptosalomao authored Jan 9, 2025
2 parents d4129da + 3780892 commit 581fd26
Show file tree
Hide file tree
Showing 63 changed files with 4,697 additions and 1,583 deletions.
1 change: 1 addition & 0 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const config: StorybookConfig = {
"@storybook/addon-essentials",
"@chromatic-com/storybook",
"@storybook/addon-interactions",
'storybook-addon-remix-react-router',
],
framework: {
name: "@storybook/react-vite",
Expand Down
9 changes: 9 additions & 0 deletions .storybook/preview.ts → .storybook/preview.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import React from 'react'
import type { Preview } from "@storybook/react";
import LanguageProvider from '../src/context/language/LanguageProvider';
import "../src/index.css"

const preview: Preview = {
Expand All @@ -12,6 +14,13 @@ const preview: Preview = {
layout: 'centered',
},
tags: ['autodocs'],
decorators: [
(Story) => (
<LanguageProvider>
<Story />
</LanguageProvider>
),
],
};

export default preview;
12 changes: 12 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
coverage:
status:
project:
default:
target: 10% # required coverage value
threshold: 1% # leniency in hitting the target

comment:
require_changes: true

github_checks:
annotations: false # disable github code annotations (can be enabled on demand if needed)
Loading

0 comments on commit 581fd26

Please sign in to comment.