Skip to content

Update to 10.10.6.0 (#38) #67

Update to 10.10.6.0 (#38)

Update to 10.10.6.0 (#38) #67

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, ubuntu-latest, macos-latest]
node-version: [12, 14, 16, 18]
steps:
- name: Checkout
uses: actions/checkout@v3
- if: matrix.os == 'windows-2019'
name: Choco install
uses: crazy-max/ghaction-chocolatey@v2
with:
args: install visualcpp-build-tools -y
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build
run: |
npm install --build-from-source
env:
CI: true