Skip to content

add types and interfaces #107

add types and interfaces

add types and interfaces #107

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
node-version: [12.x, 13.x, 14.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Dependencies
run: npm install
- name: Run All Node.js Tests
run: npm run test