Skip to content

fix: skip attempting to spawn worker thread when webpack'ed (#4) #56

fix: skip attempting to spawn worker thread when webpack'ed (#4)

fix: skip attempting to spawn worker thread when webpack'ed (#4) #56

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [16.x, 18.x, 20.x]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
# Default Python (3.12) doesn't have support for distutils
# https://github.com/nodejs/node-gyp/issues/2869
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Dependencies
run: npm install
- name: Test
run: npm test