In my application I have a golang backend and just a little bit of frontend code written in javascript / node. Circle CI recognizes the golang app correctly and runs of all the tests.
However it also sees my package.json and runs npm install which takes about 2 minutes. I’d like to stop this to speed up my continuous integration. How can I tell Circle CI to only use my backend code?
I think the best way to handle this for now would be to override the test phase and only run the go tests, sometimes inference is too smart for its own good.