Skip to content

Add type safety for getT function #716

Add type safety for getT function

Add type safety for getT function #716

Workflow file for this run

name: CI
on: [pull_request]
jobs:
build:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [16.10.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install -g yarn
- name: yarn install, build, and test
run: |
yarn install
yarn build
yarn test