Skip to content

Add missing definitions #128

Add missing definitions

Add missing definitions #128

Workflow file for this run

name: Build and upload static files to the remote server
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
cache: npm
- name: Install project dependencies
run: npm install
- name: Type checking
run: npm run typecheck
- name: Run tests
run: npm test