Skip to content

chore: make it possible to run tests on windows #6

chore: make it possible to run tests on windows

chore: make it possible to run tests on windows #6

Workflow file for this run

name: Test
on: [push]
jobs:
test:
strategy:
matrix:
node: [20, 22]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run build
- run: npm test