Skip to content

3.0.1

3.0.1 #266

Workflow file for this run

name: Testing
on:
pull_request:
push:
branches:
- main
jobs:
check:
name: test and typecheck
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x', '20.x', '22.x', '23.x']
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test-all
- name: Run tsc
run: yarn tsc -build