We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 830b394 commit c497d2fCopy full SHA for c497d2f
.github/workflows/build.yml
@@ -19,7 +19,7 @@ jobs:
19
strategy:
20
fail-fast: false
21
matrix:
22
- os: [ ubuntu-latest, macos-12, windows-latest ]
+ os: [ ubuntu-latest, macos-latest, windows-latest ]
23
24
steps:
25
- name: Checkout
@@ -34,6 +34,13 @@ jobs:
34
with:
35
node-version: 16.x
36
37
+ # On new macos-latest machines, Python 3.9+ is used, and it's causing issues with binding.gyp
38
+ - name: Use Python 3.8
39
+ if: ${{ matrix.os == 'macos-latest' }}
40
+ uses: actions/setup-python@v5
41
+ with:
42
+ python-version: 3.8
43
+
44
- name: Windows setup
45
if: ${{ matrix.os == 'windows-latest' }}
46
run: |
0 commit comments