Skip to content

Bump node-gyp from 9.4.1 to 10.0.1 #58

Bump node-gyp from 9.4.1 to 10.0.1

Bump node-gyp from 9.4.1 to 10.0.1 #58

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
node: [14, 16, 18]
arch: [x86, x64]
runs-on: windows-latest
name: Node ${{ matrix.node }} ${{ matrix.arch }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
architecture: ${{ matrix.arch }}
- name: Install
run: npm install
- name: Test
run: npm test