Skip to content

Commit

Permalink
try msbuild instead of node build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Jul 25, 2022
1 parent bed5548 commit 85bb69f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -8,17 +8,22 @@ jobs:

runs-on: ${{ matrix.os }}

timeout-minutes: 30

strategy:
matrix:
node: [ '12.x', '14.x', '16.x' ]
os: [ ubuntu-latest, windows-latest, macOS-latest ]

steps:
- name: Add msbuild to PATH
if: matrix.os == 'windows-latest'
uses: microsoft/setup-msbuild@v1

- name: Fix Windows
if: matrix.os == 'windows-latest'
run: |
npm config set msvs_version 2017
npm install --global --production windows-build-tools@4.0.0
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down

0 comments on commit 85bb69f

Please sign in to comment.