Skip to content

fix(diff): ignore undefined-valued keys in deepEqual #34

fix(diff): ignore undefined-valued keys in deepEqual

fix(diff): ignore undefined-valued keys in deepEqual #34

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
# The lowest version package.json claims to support, and the current LTS.
node-version: [22, 24]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm test