Skip to content

Commit

Permalink
Fix tests on macos-13 (#27)
Browse files Browse the repository at this point in the history
* Force update to latest version of node-gyp

* Add exclusion for node 10 on macos-13
  • Loading branch information
baileyherbert authored Sep 26, 2023
1 parent 8a302ce commit a2c27e8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
matrix:
os: [ubuntu-latest, windows-2019, macos-latest, macos-13]
node-version: [10, 18]
exclude:
- os: macos-13
node-version: 10

name: ${{ matrix.os }} (v${{ matrix.node-version }})
runs-on: ${{ matrix.os }}
Expand All @@ -26,6 +29,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Update node-gyp
if: matrix.os == 'macos-13'
run: npm install -g node-gyp

- name: Install npm dependencies
run: npm ci --ignore-scripts

Expand Down

0 comments on commit a2c27e8

Please sign in to comment.