From c6e4368f02b1c1965aec3b1f5564a8e15c239ba5 Mon Sep 17 00:00:00 2001 From: Vincent Weevers Date: Fri, 1 Apr 2022 18:02:31 +0200 Subject: [PATCH] Pin GHA runner to windows-2019 for node-gyp compat --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a4154d0..cdae9ab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest, windows-2019] node: [10, 12, 14, 16] runs-on: ${{ matrix.os }} name: ${{ matrix.os }} / Node ${{ matrix.node }}