Skip to content

1.12.0

1.12.0 #22

Workflow file for this run

name: run tests and typecheck
on: push
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
cache: yarn
- name: Install project dependencies
run: yarn install
- name: Check types
run: yarn typecheck
- name: Run tests
run: yarn test