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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.