Skip to content

release: 6.5.0-rc1 #209

release: 6.5.0-rc1

release: 6.5.0-rc1 #209

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [20.x, 21.x, 22.x, 23.x, 24.x, 25.x, 26.x]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Test
run: npm test