-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Performance issue 47 #49
Conversation
@cenfun After this change I am getting OOM on macOS in CI. Reference: https://github.com/tstyche/tstyche/actions/runs/9731886196/job/26857943053#step:7:1 That script is generating |
That is weird. and I don't have the macOS to test it. |
@mrazauskas I guess it should be caused by |
@mrazauskas The latest version caches some data to memory for performance improvement, which may cause OOM. You can try the env options: - run: yarn test:coverage
env:
FORCE_COLOR: true
MCR_LOG_TIME: true
NODE_OPTIONS: --max-old-space-size=8192 it is passed on macOS, see |
Yes! This does the job. Thanks for taking time. |
No description provided.