We have bitbucket project that uses bitbucket pipelines.
Here is what our pipeline looks like
```
seems like my issues is a duplicate of https://community.atlassian.com/t5/Bitbucket-questions/Pipelines-getting-stuck-on-npm-i/qaq-p/2640307
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not a full solution to your problem, but a recommendation.
Recommendation 1:
Use `npm ci` instead of a full install. `npm ci` will install directly the definitions from the `package-lock.json` instead of getting latest version of everything from your package.json and recalculating everything. It will be more consistent with your developer and local machines.
Recommendation 2:
When using `npm` I'd recommend to use the `cache: node` bitbucket pipeline notation, so it will cache all packages and save loads of time when running that steps.
Take a look to this: Caches | Bitbucket Cloud | Atlassian Support
This may make your builds slightly faster and potentially prevent this timeout issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.