Skip to content

Setup GitHub CI

Setup GitHub CI #1

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test-node:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 21]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test