Skip to content

Commit

Permalink
fix(CI): disable fail-fast option;
Browse files Browse the repository at this point in the history
  • Loading branch information
DigitalBrainJS committed Apr 27, 2024
1 parent c0392c9 commit 4ba5f01
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
fail-fast: false

steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 8 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/unit/adapters/fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ describe('supports fetch with nodejs', function () {

await assert.rejects(async () => {
await data.pipeTo(makeEchoStream());
}, /AbortError/);
}, /^(AbortError|CanceledError):/);
});
});

Expand Down

0 comments on commit 4ba5f01

Please sign in to comment.