Skip to content

Updated Node.js tests to also run on Windows #190

Updated Node.js tests to also run on Windows

Updated Node.js tests to also run on Windows #190

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test:cli
- run: npm run test:module:node