diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 67ce32782..5d8b97774 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -7,13 +7,14 @@ on: jobs: typescript: name: ĘŚ TypeScript - timeout-minutes: 8 + timeout-minutes: 10 runs-on: ubuntu-latest env: SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }} SUPABASE_DB_WEBHOOK_SECRET: ${{ secrets.SUPABASE_DB_WEBHOOK_SECRET }} STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }} STRIPE_WEBHOOK_SECRET: ${{ secrets.STRIPE_WEBHOOK_SECRET }} + DO_NOT_TRACK: 1 steps: - uses: actions/checkout@v4 @@ -27,6 +28,9 @@ jobs: node-version: lts/* cache: 'pnpm' + - name: Install dependencies + run: pnpm install + - uses: actions/cache@v4 with: path: .turbo @@ -34,9 +38,6 @@ jobs: restore-keys: | ${{ runner.os }}-turbo- - - name: Install dependencies - run: pnpm install - - name: Typecheck run: pnpm run typecheck @@ -54,6 +55,7 @@ jobs: STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }} STRIPE_WEBHOOK_SECRET: ${{ secrets.STRIPE_WEBHOOK_SECRET }} ENABLE_BILLING_TESTS: ${{ vars.ENABLE_BILLING_TESTS }} + DO_NOT_TRACK: 1 steps: - uses: actions/checkout@v4 @@ -62,13 +64,6 @@ jobs: - uses: pnpm/action-setup@v4 - - uses: actions/cache@v4 - with: - path: .turbo - key: ${{ runner.os }}-turbo-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-turbo- - - uses: actions/setup-node@v4 with: node-version: lts/* diff --git a/README.md b/README.md index 202cf5658..6722ab440 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,8 @@ This is a Starter Kit for building SaaS applications using Supabase, Next.js, and Tailwind CSS. -This version uses Turborepo to manage multiple packages in a single repository. - -**This project is stable but still under development. Please update the repository daily**. - A demo version of this project can be found at [makerkit/next-supabase-saas-kit-turbo-demo](https://github.com/makerkit/next-supabase-saas-kit-turbo-demo). This version contains a tasks functionality that is not present in the original version, multiple languages, and other various modifications. -[Please follow the documentation to get started](https://makerkit.dev/docs/next-supabase-turbo/introduction). \ No newline at end of file +[Please follow the documentation to get started](https://makerkit.dev/docs/next-supabase-turbo/introduction). + +**Please remember to update the repository daily**. \ No newline at end of file diff --git a/apps/web/app/(marketing)/blog/_components/cover-image.tsx b/apps/web/app/(marketing)/blog/_components/cover-image.tsx index 342634f62..26592dc84 100644 --- a/apps/web/app/(marketing)/blog/_components/cover-image.tsx +++ b/apps/web/app/(marketing)/blog/_components/cover-image.tsx @@ -13,7 +13,7 @@ export function CoverImage({ title, src, preloadImage, className }: Props) { return (

{title} @@ -27,7 +27,7 @@ export function PostHeader({ post }: { post: Cms.ContentItem }) {

diff --git a/apps/web/app/(marketing)/docs/[...slug]/page.tsx b/apps/web/app/(marketing)/docs/[...slug]/page.tsx index 4a83526e1..c18994743 100644 --- a/apps/web/app/(marketing)/docs/[...slug]/page.tsx +++ b/apps/web/app/(marketing)/docs/[...slug]/page.tsx @@ -63,7 +63,9 @@ async function DocumentationPage({ params }: DocumentationPageProps) {
-

{page.title}

+

+ {page.title} +

{description}

diff --git a/apps/web/app/(marketing)/docs/_components/docs-page-link.tsx b/apps/web/app/(marketing)/docs/_components/docs-page-link.tsx index 8fb42fd57..52cdad12c 100644 --- a/apps/web/app/(marketing)/docs/_components/docs-page-link.tsx +++ b/apps/web/app/(marketing)/docs/_components/docs-page-link.tsx @@ -18,7 +18,7 @@ export function DocsPageLink({ return ( {before ? `Previous` : ``} {after ? `Next` : ``} diff --git a/apps/web/app/(marketing)/docs/_components/floating-docs-navigation.tsx b/apps/web/app/(marketing)/docs/_components/floating-docs-navigation.tsx index 840d8947a..e6063a6c5 100644 --- a/apps/web/app/(marketing)/docs/_components/floating-docs-navigation.tsx +++ b/apps/web/app/(marketing)/docs/_components/floating-docs-navigation.tsx @@ -54,8 +54,8 @@ export function FloatingDocumentationNavigation(
{props.children} @@ -63,7 +63,7 @@ export function FloatingDocumentationNavigation(