Skip to content

prepare 0.9.0

prepare 0.9.0 #94

Workflow file for this run

on: [push]
name: Tests
permissions: {}
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install root project dependencies
run: npm install
- name: Build and run tests
run: npm test