Skip to content

chore: Upgrade pnpm to v10.34.4 #2648

chore: Upgrade pnpm to v10.34.4

chore: Upgrade pnpm to v10.34.4 #2648

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 22.x
- 24.x
mongodb:
- 6.0.29
- 7.0.37
- 8.0.26
steps:
- uses: actions/checkout@v4.3.1
with:
filter: tree:0
- uses: pnpm/action-setup@v4.4.0
- uses: actions/setup-node@v6.3.0
name: Use Node.js ${{ matrix.node }}
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: node -v
- run: pnpm install
- run: pnpm test:build
env:
MONGOMS_VERSION: ${{ matrix.mongodb }}
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.3.1
with:
filter: tree:0
- uses: pnpm/action-setup@v4.4.0
- uses: actions/setup-node@v6.3.0
with:
node-version-file: package.json
cache: pnpm
- run: pnpm install
- run: pnpm build:docs && git diff
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.3.1
with:
filter: tree:0
- uses: pnpm/action-setup@v4.4.0
- uses: actions/setup-node@v6.3.0
with:
node-version-file: package.json
cache: pnpm
- run: pnpm install
- run: pnpm lint:ci && pnpm pretty:ci
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.3.1
with:
filter: tree:0
- uses: pnpm/action-setup@v4.4.0
- uses: actions/setup-node@v6.3.0
with:
node-version-file: package.json
cache: pnpm
- run: pnpm install
- run: pnpm test
types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.3.1
with:
filter: tree:0
- uses: pnpm/action-setup@v4.4.0
- uses: actions/setup-node@v6.3.0
with:
node-version-file: package.json
cache: pnpm
- run: pnpm install
- run: pnpm test:types