Skip to content

Commit 9a6d980

Browse files
authored
Fix CI failure on Windows (#142)
At some point in last year, label `windows-latest` runs windows-2022 runner. However node-gyp does not seem to support the latest Visual Studio. It is causing a current CI failure on Windows node. Using `windows-2019` label fixes the issue.
1 parent 7dcef01 commit 9a6d980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- run: npm install
1919
- run: npm test
2020
test_windows:
21-
runs-on: windows-latest
21+
runs-on: windows-2019
2222
steps:
2323
- uses: actions/checkout@v2
2424
- uses: actions/setup-node@v2

0 commit comments

Comments
 (0)