Skip to content

Fixed unit tests for new tokenisation method #63

Fixed unit tests for new tokenisation method

Fixed unit tests for new tokenisation method #63

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
node-version: [18.x, 20.x, 21.x, 22.x]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test