Skip to content

build(deps): bump the dependencies group with 13 updates #1236

build(deps): bump the dependencies group with 13 updates

build(deps): bump the dependencies group with 13 updates #1236

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
- uses: pnpm/action-setup@v6
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run docs:check
if: matrix.os == 'ubuntu-latest'
- run: pnpm run docs:site
if: matrix.os == 'ubuntu-latest'
- run: pnpm run test
- run: pnpm run build
if: matrix.os == 'ubuntu-latest'
- run: pnpm run test:packed-cli
if: matrix.os == 'ubuntu-latest'