Skip to content
Closed
Show file tree
Hide file tree
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
8 changes: 5 additions & 3 deletions .github/workflows/ci-pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,18 @@ jobs:
- name: Test NAPI file in linux_glibc containers
if: matrix.image == 'linux_glibc'
run: |
./tests/load-test.sh node:16-buster ${{matrix.cpu.platform}}
./tests/load-test.sh node:16-bullseye ${{matrix.cpu.platform}}
./tests/load-test.sh node:19-buster ${{matrix.cpu.platform}}
./tests/load-test.sh node:18-bullseye ${{matrix.cpu.platform}}
./tests/load-test.sh node:19-bullseye ${{matrix.cpu.platform}}
./tests/load-test.sh node:22-bullseye ${{matrix.cpu.platform}}

- name: Test NAPI file in linux_musl containers
if: matrix.image == 'linux_musl'
run: |
./tests/load-test.sh node:18-alpine3.15 ${{matrix.cpu.platform}}
./tests/load-test.sh node:16-alpine3.15 ${{matrix.cpu.platform}}
./tests/load-test.sh node:18-alpine3.15 ${{matrix.cpu.platform}}
./tests/load-test.sh node:19-alpine3.15 ${{matrix.cpu.platform}}
./tests/load-test.sh node:22-alpine3.22 ${{matrix.cpu.platform}}

windows-napi:
name: Build NAPI windows - Node ${{matrix.nodejs}} - ${{matrix.arch}}
Expand Down
3 changes: 2 additions & 1 deletion license-checker-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"**/*.bat",
"**/*.pem",
"**/*.key",
"**/*.crt"
"**/*.crt",
"yarn.lock"
],
"defaultFormat": {
"prepend": "#",
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"description": "Pulsar Node.js client",
"main": "index.js",
"types": "index.d.ts",
"resolutions": {
"minimatch": "^9.0.0"
},
"directories": {
"src": "src",
"example": "examples"
Expand Down
2 changes: 1 addition & 1 deletion pkg/linux/Dockerfile_linux_glibc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

ARG NODE_VERSION

FROM node:${NODE_VERSION}-buster
FROM node:${NODE_VERSION}-bullseye

RUN apt-get update -y && \
apt-get install -y \
Expand Down
Loading
Loading