Skip to content

Commit

Permalink
Added Nodejs version 22 to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DomPeliniAerospike committed May 30, 2024
1 parent b73e41c commit 33b5f94
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ jobs:
nodejs: [
["v108", 18],
["v115", 20],
["v120", 21]
["v120", 21],
["v127", 22]
]
platform: [
"x86_64",
Expand Down Expand Up @@ -215,7 +216,8 @@ jobs:
nodejs: [
["v108", 18],
["v115", 20],
["v120", 21]
["v120", 21],
["v127", 22]
]
runs-on: macos-latest
steps:
Expand Down Expand Up @@ -302,6 +304,7 @@ jobs:
# ["v108", "18"],
# ["v115", "20"],
# ["v120", "21"],
# ["v127", 22]
# ]
# fail-fast: false
# steps:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nodejs-version: ["18", "20", "21"]
nodejs-version: ["18", "20", "21", "22"]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -170,7 +170,8 @@ jobs:
node-version: [
"18",
"20",
"21"
"21",
"22"
]
fail-fast: false

Expand Down Expand Up @@ -203,6 +204,8 @@ jobs:
cp -r node-v115-linux-x64 lib/binding/node-v115-linux-x64
elif [ "${{ matrix.node-version }}" = "21" ]; then
cp -r node-v120-linux-x64 lib/binding/node-v120-linux-x64
elif [ "${{ matrix.node-version }}" = "22" ]; then
cp -r node-v127-linux-x64 lib/binding/node-v127-linux-x64
fi
- if: ${{ contains(github.event.pull_request.labels.*.name, 'new-server-features') }}
Expand Down

0 comments on commit 33b5f94

Please sign in to comment.