Getting permission denied for npm package dependance from Github repo

Following is the scenario

ParentNodeModule in a git repo which consumes ChildNodeModule from another get repo and refers it in package dependency as git+ssh://git@github.com/SomeOrg/ChildNodeModule.git#1.0.0.

Now problem is that ParentNodeModule as a circle ci setup which should run tests and lint checks but its not able to because in cirlce ci its no able to access git@github.com/SomeOrg/ChildNodeModule.git and showing following error

npm ERR! ERROR: Permission to SomeOrg/ChildNodeModule.git denied to deploy key
npm ERR! fatal: Could not read from remote repository.
n

So how to solve it any clues would be helpful

Hi @anil, welcome!

If the repository is private and/or you need write access, a user key needs to be created: https://circleci.com/docs/2.0/gh-bb-integration/#security