Skip to content

Commit

Permalink
enable build in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
o-az committed Sep 17, 2023
1 parent 4c254ef commit 49137e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,4 @@ jobs:
run: pnpm typecheck

- name: '🔧 Build'
run: |
# pnpm build
echo 'skipping build until deploy-ready'
run: pnpm build
4 changes: 2 additions & 2 deletions apps/web/src/app/[locale]/client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import type { ReactNode } from 'react'
import { Theme } from '@radix-ui/themes'
import { wagmiConfig } from '#/lib/wallet'
import { ConnectKitProvider } from 'connectkit'
import { Header } from '#/components/header'
import { Footer } from '#/components/footer'
import { Header } from '#/components/header.tsx'
import { Footer } from '#/components/footer.tsx'
import { I18nProviderClient } from '#/locales/client'

export default function Layout({ children }: { children: ReactNode }) {
Expand Down
4 changes: 3 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
},
"lint": {},
"format": {},
"typecheck": {},
"typecheck": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
Expand Down

0 comments on commit 49137e0

Please sign in to comment.