Skip to content

deps: Update keytar and whats-my-line (allows building on Node 18 or newer) #35

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:

- name: Setup Pulsar Editor
uses: pulsar-edit/action-pulsar-dependency@v3.2

- 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 dependencies (Windows)
if: ${{ runner.os == 'Windows' }}
Expand Down Expand Up @@ -59,7 +65,7 @@ jobs:
with:
node-version: 'lts/*'
- name: NPM install
run: npm install
run: npm install --legacy-peer-deps
- name: Lint ✨
run: npm run lint

Loading