Skip to content

bench: fix array creation in benchmark #49

bench: fix array creation in benchmark

bench: fix array creation in benchmark #49

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
node_version:
- 10
- 12
- 14
- 16
- 18
- 20
- 21
name: Running tests with Node ${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- run: |
npm install
npm run test