Skip to content

Commit 79a60ea

Browse files
authored
Merge pull request #154 from pulsar-edit/fix-CI-2025
Fix CI
2 parents a6f843f + 2ba5db4 commit 79a60ea

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
matrix:
1616
os:
1717
- ubuntu-latest
18-
- macos-latest
19-
- windows-2019
18+
- macos-14
19+
- windows-latest
2020
node_version:
2121
- 14
2222
- 16
@@ -55,6 +55,11 @@ jobs:
5555
# 'distutils', which has been removed
5656
run: python3 -m pip install setuptools
5757

58+
- name: Update node-gyp (NodeJS v14, Windows)
59+
# Need newer node-gyp to support newer Visual Studio versions
60+
if: ${{ matrix.node_version == 14 && runner.os == 'Windows' }}
61+
run: yarn global add node-gyp@9
62+
5863
- name: Install dependencies
5964
if: ${{ matrix.node_version != 14 }}
6065
run: yarn install

0 commit comments

Comments
 (0)