Skip to content

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /benchmark #16

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /benchmark

chore(deps): bump lodash from 4.17.21 to 4.17.23 in /benchmark #16

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
name: Test on Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
- run: pnpm lint
build:
name: Build and verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test:imports
- name: Verify build output
run: |
test -f lib/cjs/index.js || exit 1
test -f lib/cjs/index.d.ts || exit 1
test -f lib/esm/index.js || exit 1
echo "✓ Build output verified"