Skip to content

Commit

Permalink
Merge pull request #4 from pulsar-edit/fix-ci
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
confused-Techie authored Dec 10, 2023
2 parents 9ef7def + a7ab301 commit 98e96a0
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,21 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '16'
- name: Install Python setuptools
# This is needed for Python 3.12+, since many versions of node-gyp
# are incompatible with Python 3.12+, which no-longer ships 'distutils'
# out of the box. 'setuptools' package provides 'distutils'.
run: python3 -m pip install setuptools
- name: Install windows-build-tools
if: ${{ matrix.os == 'windows-latest' }}
run: npm config set msvs_version 2019
- name: Pre-warm the node headers cache for node-gyp
if: ${{ runner.os == 'Windows' }}
run: npx node-gyp install
- name: Install dependencies
run: npm i
- name: Run tests
Expand Down

0 comments on commit 98e96a0

Please sign in to comment.