Skip to content

Commit 08c49e4

Browse files
committed
Disable Windows in CI
1 parent 4f520f8 commit 08c49e4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/mediasoup-client-aiortc.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
node: 20
2323
- os: macos-12
2424
node: 20
25-
- os: windows-2022
26-
node: 20
2725

2826
runs-on: ${{ matrix.ci.os }}
2927

@@ -45,6 +43,7 @@ jobs:
4543
restore-keys: |
4644
${{ matrix.ci.os }}-node-
4745
46+
# Use --force since some dev dependency requires Node >= 18.
4847
- name: npm ci
4948
run: npm ci --force --foreground-scripts
5049

src/Channel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export class Channel extends EnhancedEventEmitter {
167167
this.#socket.write(ns);
168168

169169
return new Promise((pResolve, pReject) => {
170-
const timeout = 1000 * (15 + 0.1 * this.#sents.size);
170+
const timeout = 2000 * (15 + 0.1 * this.#sents.size);
171171
const sent: Sent = {
172172
id: id,
173173
method: method,

0 commit comments

Comments
 (0)