1--- 2section: cli-commands 3title: npm-install-ci-test 4description: Install a project with a clean slate and run tests 5--- 6 7# npm install-ci-test(1) 8 9## Install a project with a clean slate and run tests 10 11### Synopsis 12 13```bash 14npm install-ci-test 15 16alias: npm cit 17``` 18 19### Description 20 21This command runs an `npm ci` followed immediately by an `npm test`. 22 23### See Also 24 25* [npm ci](/cli-commands/npm-ci) 26* [npm test](/cli-commands/npm-test) 27