Skip to content

DRAFT: Use pyproject.toml to define PyPI package #175

DRAFT: Use pyproject.toml to define PyPI package

DRAFT: Use pyproject.toml to define PyPI package #175

Workflow file for this run

name: Run Node Unit Tests
on:
pull_request:
branches:
- master
jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- macos-12
- ubuntu-22.04
- windows-2022
node-version:
- '14'
- '16'
- '18'
- '19'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
- name: Test with npm
run: npm run test