diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9e2fc8..83089f3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,17 +17,20 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 22 - cache: "npm" + node-version: 24 + cache: "bun" + + - name: Install Bun + run: npm install -g bun - name: Install dependencies - run: npm ci + run: bun install - name: Check Linting - run: npm run lint + run: bun run lint - name: Check Format - run: npm run format + run: bun run format - - name: Playgourd build check - run: npm run build + - name: Playgroud build check + run: bun run build diff --git a/app/components/blog/Header.vue b/app/components/blog/Header.vue index 3842a93..692077f 100644 --- a/app/components/blog/Header.vue +++ b/app/components/blog/Header.vue @@ -40,7 +40,7 @@ withDefaults(defineProps(), {

+ class="text-3xl md:text-4xl lg:text-5xl font-extrabold text-zinc-800 dark:text-zinc-100 mb-6 tracking-tight leading-tight wrap-break-word"> {{ title }}

diff --git a/app/pages/posts/[post].vue b/app/pages/posts/[post].vue index bd42fe3..ecb4b69 100644 --- a/app/pages/posts/[post].vue +++ b/app/pages/posts/[post].vue @@ -43,7 +43,7 @@ useHead({