-
Type:
Bug
-
Resolution: Timed out
-
Priority:
Medium
-
Component/s: Pipelines - Caching
-
3
-
Severity 3 - Minor
-
63
Issue Summary
Some packages are taking a long time to finish downloading declared in package.json when using 'npm install' on Bitbucket pipelines.
For example, when running on pipelines, package below takes a long time to finish downloading:
"japan-postal-code": "github:ZCloud-Firstserver/japan-postal-code",
Steps to Reproduce
- Use package above and run 'npm install' on bitbucket-pipelines.yml
Expected Results
The package is downloaded as quickly as done locally.
Actual Results
The package takes a really long time to download (more than 30 mins)
Workaround
Use a tarball URL like below instead:
"japan-postal-code": "https://github.com/ZCloud-Firstserver/japan-postal-code/archive/refs/heads/master.tar.gz",