Skip to content

deps(deps): bump fumadocs-ui from 16.4.8 to 16.8.9 #727

deps(deps): bump fumadocs-ui from 16.4.8 to 16.8.9

deps(deps): bump fumadocs-ui from 16.4.8 to 16.8.9 #727

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: pnpm
- name: Get pnpm store directory
id: pnpm-cache
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Cache turbo
uses: actions/cache@v4
with:
path: .turbo
key: turbo-${{ github.ref }}-${{ github.sha }}
restore-keys: |
turbo-${{ github.ref }}-
turbo-
- name: Lint
run: pnpm turbo lint
- name: Typecheck
run: pnpm turbo typecheck
- name: Test
run: pnpm turbo test
- name: Build
run: pnpm turbo build