Skip to content

Add top-right blog link on home page #787

Add top-right blog link on home page

Add top-right blog link on home page #787

Workflow file for this run

name: Build and validate
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Cache Next.js build
uses: actions/cache@v4
with:
path: .next/cache
key: nextjs-${{ hashFiles('pnpm-lock.yaml') }}-${{ hashFiles('**/*.ts', '**/*.tsx') }}
restore-keys: |
nextjs-${{ hashFiles('pnpm-lock.yaml') }}-
nextjs-
- run: pnpm install
- run: pnpm test
- run: pnpm build