Skip to content

replace hasOwnProperty with Object.hasOwn #10

replace hasOwnProperty with Object.hasOwn

replace hasOwnProperty with Object.hasOwn #10

Workflow file for this run

name: Node CI
on:
pull_request:
branches:
- v3
push:
branches:
- v3
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
node: [12.20.0, 14.13.1, 16.0.0, 16, 17, 18, 19, 20, 21, 22, 23, 24]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test