Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs:
brew install protobuf
yarn build --target aarch64-apple-darwin
strip -x *.node
name: stable - ${{ matrix.settings.target }} - node@18
name: stable - ${{ matrix.settings.target }} - node@22
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
if: ${{ !matrix.settings.docker }}
with:
node-version: 18
node-version: 22
cache: yarn
cache-dependency-path: ./npm/napi/yarn.lock
- name: Remove rust-toolchain.toml (conflicts with mac arm64 build)
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
uses: actions/setup-node@v4
if: matrix.settings.target == 'i686-pc-windows-msvc'
with:
node-version: 18
node-version: 22
cache: yarn
architecture: x86
cache-dependency-path: ./npm/napi/yarn.lock
Expand Down Expand Up @@ -161,8 +161,8 @@ jobs:
target: aarch64-apple-darwin
node-arch: arm64
node:
- '18'
- '20'
- '22'
- '24'
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -196,8 +196,8 @@ jobs:
fail-fast: false
matrix:
node:
- '18'
- '20'
- '22'
- '24'
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -230,8 +230,8 @@ jobs:
fail-fast: false
matrix:
node:
- '18'
- '20'
- '22'
- '24'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
cache: yarn
cache-dependency-path: ./npm/napi/yarn.lock
- name: Install dependencies
Expand Down
Loading