We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 708afd0 + b92e438 commit a18b547Copy full SHA for a18b547
.github/workflows/unit-test.yml
@@ -64,6 +64,7 @@ jobs:
64
runs-on: windows-latest
65
env:
66
NPM_CONFIG_UNSAFE_PERM: true
67
+ NODE_OPTIONS: --max-old-space-size=8192
68
steps:
69
- name: Checkout
70
uses: actions/checkout@v3
experimental/packages/opentelemetry-instrumentation-http/package.json
@@ -9,7 +9,7 @@
9
"prepublishOnly": "npm run compile",
10
"compile": "tsc --build",
11
"clean": "tsc --build --clean",
12
- "test": "nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
+ "test": "cross-env NODE_OPTIONS='--max-old-space-size=8192' nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
13
"tdd": "npm run test -- --watch-extensions ts --watch",
14
"lint": "eslint . --ext .ts",
15
"lint:fix": "eslint . --ext .ts --fix",
0 commit comments