Skip to content

Add various reified implementations and corresponding tests #578

Add various reified implementations and corresponding tests

Add various reified implementations and corresponding tests #578

Workflow file for this run

name: Lint, build, and test
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install npm dependencies
run: npm install
- name: Run linter
run: npm run lint-check
- name: Run TypeScript compiler
run: npm run build
- name: Run tests
run: npm test