Skip to content

Update index.d.ts

Update index.d.ts #15

Workflow file for this run

name: Unit tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: Unit tests (node ${{ matrix.node }})
strategy:
matrix:
node: [ '16', '14', '12' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install -g jest@^26
- run: npm install
- run: npm run jest