Skip to content

fix: improve performance of getReport() #72

fix: improve performance of getReport()

fix: improve performance of getReport() #72

Workflow file for this run

name: Unit tests
on:
- push
- pull_request
jobs:
unit:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 8
- 10
- 12
- 14
- 16
- 18
- 20
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test