Skip to content

Commit

Permalink
chore: troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-guggisberg committed Oct 29, 2024
1 parent 01d3a2f commit e8203a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20.x'
env:
NODE_OPTIONS: "--dns-result-order=ipv4first"
- run: npm ci
- run: npm run lint
- run: npm test
Expand All @@ -45,6 +47,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20.x'
env:
NODE_OPTIONS: "--dns-result-order=ipv4first"
- run: npm ci
- run: npm run semantic-release
env:
Expand Down
3 changes: 0 additions & 3 deletions test/core/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,6 @@ describe('Core Tests', () => {
await defaultCtx.request('https://example.com:81/', { signal });
assert.fail();
} catch (err) {
console.log(err);
console.log(err.stack);
console.log(typeof err);
assert(err instanceof RequestAbortedError);
}
const ts1 = Date.now();
Expand Down

0 comments on commit e8203a2

Please sign in to comment.