Skip to content

Merge pull request #70 from gflohr/gflohr-patch-1 #19

Merge pull request #70 from gflohr/gflohr-patch-1

Merge pull request #70 from gflohr/gflohr-patch-1 #19

Workflow file for this run

name: CI - Test Suite
on:
push:
branches:
- '**'
jobs:
test:
name: Test on ${{ matrix.os }} with Node.js ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [22]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Set up Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Run tests
run: bun run test