Skip to content

feat(gyp): update gyp to v0.16.1 #376

feat(gyp): update gyp to v0.16.1

feat(gyp): update gyp to v0.16.1 #376

Workflow file for this run

# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
name: visual-studio
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
visual-studio:
strategy:
fail-fast: false
max-parallel: 8
matrix:
include:
- os: windows-2019
msvs-verison: 2019
- os: windows-2022
msvs-version: 2022
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
run: |
npm install --no-progress
python -m pip install packaging
- name: Environment Information
run: npx envinfo
- name: Run Node tests
shell: pwsh
run: |
$pythonLocation = Split-Path -Parent (Get-Command python).Source
npm run test --python="${pythonLocation}\\python.exe" --msvs-version="${{ matrix.msvs-version }}"