Skip to content

Commit

Permalink
Disable Windows in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Jan 10, 2024
1 parent 4f520f8 commit 08c49e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/mediasoup-client-aiortc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ jobs:
node: 20
- os: macos-12
node: 20
- os: windows-2022
node: 20

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

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

Expand Down
2 changes: 1 addition & 1 deletion src/Channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export class Channel extends EnhancedEventEmitter {
this.#socket.write(ns);

return new Promise((pResolve, pReject) => {
const timeout = 1000 * (15 + 0.1 * this.#sents.size);
const timeout = 2000 * (15 + 0.1 * this.#sents.size);
const sent: Sent = {
id: id,
method: method,
Expand Down

0 comments on commit 08c49e4

Please sign in to comment.