Skip to content

Commit

Permalink
chore: move node options into npm script
Browse files Browse the repository at this point in the history
I wanted to cut another RC to potentially close
* #1420
* #1398
* #1397

but the release is erroring at the test because of the memory limit
so I moved the increased memory limit node options into the npm script
rather than the Kubernetes Javascript Client - Validation workflow
  • Loading branch information
mstruebing committed Dec 15, 2023
1 parent 7d69434 commit a90d0f5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -24,7 +24,5 @@ jobs:
- run: node version-check.js
- run: npm ci
- run: npm test
env:
NODE_OPTIONS: --max-old-space-size=8192
- run: npm run lint
- run: npm audit --audit-level=critical
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -24,7 +24,7 @@
"build": "tsc",
"generate": "./generate-client.sh",
"watch": "tsc --watch",
"test": "nyc mocha",
"test": "NODE_OPTIONS='--max-old-space-size=8192' nyc mocha",
"prepare": "npm run build && husky install",
"prepack": "npm run build",
"docs": "typedoc src/gen/api"
Expand Down

0 comments on commit a90d0f5

Please sign in to comment.