Skip to content
Merged
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
7 changes: 3 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x, 21.x]
node-version: [18.x, 20.x, 21.x, 22.x, 23.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
6 changes: 3 additions & 3 deletions test/sasl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ describe('user-provided sasl mechanism', function () {
},
step: function () {
stepCalled = true;
this.outcome = <any>true;
this.outcome = true as any;
return;
}
};
Expand Down Expand Up @@ -260,7 +260,7 @@ describe('user-provided sasl mechanism', function () {
},
step: function () {
stepCalled = true;
this.outcome = <any>false;
this.outcome = false as any;
return;
}
};
Expand Down Expand Up @@ -300,7 +300,7 @@ describe('user-provided sasl mechanism', function () {
return new Promise<void>(resolve => {
process.nextTick(() => {
stepCalled = true;
this.outcome = <any>true;
this.outcome = true as any;
resolve();
});
});
Expand Down