Skip to content

Commit 2ac7a0f

Browse files
committed
Fix installation on CI
1 parent ef124b8 commit 2ac7a0f

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/generate.yml

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
11+
# Workaround for https://github.com/nodejs/node-gyp/issues/2219#issuecomment-1359162118
12+
- uses: actions/setup-python@v5
13+
with:
14+
python-version: "3.10"
1115
- name: Install Node
1216
uses: actions/setup-node@v2
1317
with:

.github/workflows/test.yml

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14+
# Workaround for https://github.com/nodejs/node-gyp/issues/2219#issuecomment-1359162118
15+
- uses: actions/setup-python@v5
16+
with:
17+
python-version: "3.10"
1418
- name: Install Node
1519
uses: actions/setup-node@v2
1620
with:

0 commit comments

Comments
 (0)