Skip to content

Commit 98b72c3

Browse files
authored
ci(ci.yml): unpin node 24 (#1148)
* ci(ci.yml): unpin node 24 * chore(package): reinstall mockttp deps * build(mockttp): use 2048 bits in generateCACertificate
1 parent de1300e commit 98b72c3

File tree

3 files changed

+178
-284
lines changed

3 files changed

+178
-284
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,7 @@ jobs:
131131

132132
strategy:
133133
matrix:
134-
# Pin v24 for now due to issues with TLS passthrough with mockttp
135-
# https://github.com/httptoolkit/mockttp/commit/b591cff5f44355f395aee5eaf5f2bcc1b1979b34
136-
node-version: [20.x, 22.x, 24.4.1]
134+
node-version: [20.x, 22.x, 24.x]
137135

138136
steps:
139137
- uses: actions/checkout@v5

test/e2e/router.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as request from 'supertest';
55

66
import { createApp, createAppWithPath, createProxyMiddleware } from './test-kit';
77

8-
const untrustedCACert = generateCACertificate({ bits: 1024 });
8+
const untrustedCACert = generateCACertificate({ bits: 2048 });
99

1010
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
1111

0 commit comments

Comments
 (0)