Skip to content

Split tests into modular files #30

Split tests into modular files

Split tests into modular files #30

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 20.x
- 22.x
- 24.x
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Show tool versions
run: |
node --version
npm --version
- name: Syntax check
run: npm run check
- name: Test
run: npm test
- name: Package dry run
run: npm pack --dry-run