Skip to content

v4

v4 #428

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: ['20.x', '22.x', '24.x']
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Run tests
run: yarn test-all
- name: Run tsc
run: yarn tsc -build