Skip to content

Fix tests to work standalone, adopt QUnit #12

Fix tests to work standalone, adopt QUnit

Fix tests to work standalone, adopt QUnit #12

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node: [10, 16, 18, 20, 22]
steps:
- name: Clone repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test