Diagnostics CI size issue

This commit is contained in:
Charles Bochet
2024-10-05 09:56:51 +02:00
parent c73feb513a
commit 2472b3faaf
2 changed files with 37 additions and 37 deletions

View File

@ -31,6 +31,8 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install dependencies - name: Install dependencies
uses: ./.github/workflows/actions/yarn-install uses: ./.github/workflows/actions/yarn-install
- name: Diagnostic disk space issue
run: df -h
- name: Front / Restore Storybook Task Cache - name: Front / Restore Storybook Task Cache
uses: ./.github/workflows/actions/task-cache uses: ./.github/workflows/actions/task-cache
with: with:

View File

@ -58,7 +58,6 @@ const ProvidersThatNeedRouterContext = () => {
const pageTitle = getPageTitleFromPath(pathname); const pageTitle = getPageTitleFromPath(pathname);
return ( return (
<>
<ApolloProvider> <ApolloProvider>
<ClientConfigProviderEffect /> <ClientConfigProviderEffect />
<ClientConfigProvider> <ClientConfigProvider>
@ -94,7 +93,6 @@ const ProvidersThatNeedRouterContext = () => {
</ChromeExtensionSidecarProvider> </ChromeExtensionSidecarProvider>
</ClientConfigProvider> </ClientConfigProvider>
</ApolloProvider> </ApolloProvider>
</>
); );
}; };