Skip to content

ci: updates

ci: updates #17

Workflow file for this run

name: CI Tests
on:
push:
branches:
- '*'
- '!master'
jobs:
ci-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
node-version: [ 18, 20 ]
fail-fast: false
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: Run test suite
run: npm run test