Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2 from cclauss/patch-1
Browse files Browse the repository at this point in the history
GitHub Actions: Test on current versions of Node.js
  • Loading branch information
lwahonen authored Mar 28, 2024
2 parents f50a73b + 7edc186 commit 3704ca0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,20 @@ jobs:
build_and_test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x, latest]
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9
- uses: actions/setup-node@v2
python-version: 3.x
- uses: actions/setup-node@v4
with:
node-version: '14'
node-version: ${{ matrix.node-version }}
- name: install dependencies and test
shell: bash
run: |
Expand All @@ -26,6 +28,6 @@ jobs:
- name: build with node-gyp
shell: bash
run: |
npm install -g node-gyp
# npm install -g node-gyp
node-gyp configure
node-gyp rebuild

0 comments on commit 3704ca0

Please sign in to comment.