Skip to content

Properly handle objects with null prototype in metadata (#220) #10

Properly handle objects with null prototype in metadata (#220)

Properly handle objects with null prototype in metadata (#220) #10

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 16
- 18
- 20
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: npm clean-install
- name: Lint
run: npm run lint
- name: Test
run: npm test