Skip to content

build(deps): bump qs from 6.15.1 to 6.15.2 (#224) #1238

build(deps): bump qs from 6.15.1 to 6.15.2 (#224)

build(deps): bump qs from 6.15.1 to 6.15.2 (#224) #1238

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'