Skip to content

feat: refactor codebase for better TypeScript annotations and TSDoc documentation #113

feat: refactor codebase for better TypeScript annotations and TSDoc documentation

feat: refactor codebase for better TypeScript annotations and TSDoc documentation #113

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
node-version: [18.x, 20.x, 21.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