We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f0d8241 + dcec573 commit 22c6952Copy full SHA for 22c6952
.github/workflows/test-typescript-npm.yml
@@ -3,6 +3,10 @@ name: Test TypeScript
3
env:
4
# See: https://github.com/actions/setup-node/#readme
5
NODE_VERSION: 10.x
6
+ # See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
7
+ # Using newest version documented as supported by node-gyp dependency:
8
+ # https://github.com/nodejs/node-gyp/tree/v7.1.2#installation
9
+ PYTHON_VERSION: 3.8
10
11
on:
12
push:
@@ -60,6 +64,11 @@ jobs:
60
64
with:
61
65
node-version: ${{ env.NODE_VERSION }}
62
66
67
+ - name: Install Python
68
+ uses: actions/setup-python@v4
69
+ with:
70
+ python-version: ${{ env.PYTHON_VERSION }}
71
+
63
72
- name: Install dependencies
73
run: npm install
74
0 commit comments