We have a project in Git containing several modules with the following structures:
project
|- module1
|- package.json
(...)
|- module2
|- package.json
(...)
Each package.json
file has a test
entry to execute tests of the module. So we can execute tests for a particular module like this (in the corresponding sub folder) after having executed “npm install” in the sub folder:
$ npm run test
Is it possible to configure such a project in CircleCI?
Thanks very much for your help!