Skip to content

Commit

Permalink
pin python so gyp runs (#76)
Browse files Browse the repository at this point in the history
* pin python so gyp runs

* just lts for ci
  • Loading branch information
mafintosh committed Jan 7, 2024
1 parent 688dbd7 commit d6d6981
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -4,8 +4,8 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
node: [10, 12, 14, 16]
node-version: [lts/*]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} / Node ${{ matrix.node }}
steps:
Expand All @@ -15,6 +15,9 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 https://github.com/actions/setup-python/releases/tag/v4.7.1
with:
python-version: '3.11'
- name: Install
run: npm install
- name: Test
Expand Down

0 comments on commit d6d6981

Please sign in to comment.