/var/lang/lib/node_modules/npm/docs/content/commands
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
---title: npm-install-ci-testsection: 1description: Install a project with a clean slate and run tests--- ### Synopsis ```bashnpm install-ci-test aliases: cit, clean-install-test, sit``` ### Description This command runs `npm ci` followed immediately by `npm test`. ### Configuration #### `install-strategy` * Default: "hoisted"* Type: "hoisted", "nested", "shallow", or "linked" Sets the strategy for installing packages in node_modules. hoisted(default): Install non-duplicated in top-level, and duplicated as necessarywithin directory structure. nested: (formerly --legacy-bundling) install inplace, no hoisting. shallow (formerly --global-style) only install directdeps at top-level. linked: (experimental) install in node_modules/.store,link in place, unhoisted. #### `legacy-bundling` * Default: false* Type: Boolean* DEPRECATED: This option has been deprecated in favor of `--install-strategy=nested` Instead of hoisting package installs in `node_modules`, install packages inthe same manner that they are depended on. This may cause very deepdirectory structures and duplicate package installs as there is node-duplicating. Sets `--install-strategy=nested`. #### `global-style` * Default: false* Type: Boolean* DEPRECATED: This option has been deprecated in favor of `--install-strategy=shallow` Only install direct dependencies in the top level `node_modules`, but hoiston deeper dependencies. Sets `--install-strategy=shallow`. #### `omit` * Default: 'dev' if the `NODE_ENV` environment variable is set to 'production'; otherwise, empty.* Type: "dev", "optional", or "peer" (can be set multiple times) Dependency types to omit from the installation tree on disk. Note that these dependencies _are_ still resolved and added to the`package-lock.json` or `npm-shrinkwrap.json` file. They are just notphysically installed on disk. If a package type appears in both the `--include` and `--omit` lists, thenit will be included. If the resulting omit list includes `'dev'`, then the `NODE_ENV` environmentvariable will be set to `'production'` for all lifecycle scripts. #### `include` * Default:* Type: "prod", "dev", "optional", or "peer" (can be set multiple times) Option that allows for defining which types of dependencies to install. This is the inverse of `--omit=<type>`. Dependency types specified in `--include` will not be omitted, regardless ofthe order in which omit/include are specified on the command-line. #### `strict-peer-deps` * Default: false* Type: Boolean If set to `true`, and `--legacy-peer-deps` is not set, then _any_conflicting `peerDependencies` will be treated as an install failure, evenif npm could reasonably guess the appropriate resolution based on non-peerdependency relationships. By default, conflicting `peerDependencies` deep in the dependency graph willbe resolved using the nearest non-peer dependency specification, even ifdoing so will result in some packages receiving a peer dependency outsidethe range set in their package's `peerDependencies` object. When such an override is performed, a warning is printed, explaining theconflict and the packages involved. If `--strict-peer-deps` is set, thenthis warning is treated as a failure. #### `foreground-scripts` * Default: `false` unless when using `npm pack` or `npm publish` where it defaults to `true`* Type: Boolean Run all build scripts (ie, `preinstall`, `install`, and `postinstall`)scripts for installed packages in the foreground process, sharing standardinput, output, and error with the main npm process. Note that this will generally make installs run slower, and be much noisier,but can be useful for debugging. #### `ignore-scripts` * Default: false* Type: Boolean If true, npm does not run scripts specified in package.json files. Note that commands explicitly intended to run a particular script, such as`npm start`, `npm stop`, `npm restart`, `npm test`, and `npm run` will stillrun their intended script if `ignore-scripts` is set, but they will *not*run any pre- or post-scripts. #### `allow-git` * Default: "all"* Type: "all", "none", or "root" Limits the ability for npm to fetch dependencies from git references. Thatis, dependencies that point to a git repo instead of a version or semverrange. Please note that this could leave your tree incomplete and somepackages may not function as intended or designed. `all` allows any git dependencies to be fetched and installed. `none`prevents any git dependencies from being fetched and installed. `root` onlyallows git dependencies defined in your project's package.json to be fetchedinstalled. Also allows git dependencies to be fetched for other commandslike `npm view` #### `audit` * Default: true* Type: Boolean When "true" submit audit reports alongside the current npm command to thedefault registry and all registries configured for scopes. See thedocumentation for [`npm audit`](/commands/npm-audit) for details on what issubmitted. #### `bin-links` * Default: true* Type: Boolean Tells npm to create symlinks (or `.cmd` shims on Windows) for packageexecutables. Set to false to have it not do this. This can be used to work around thefact that some file systems don't support symlinks, even on ostensibly Unixsystems. #### `fund` * Default: true* Type: Boolean When "true" displays the message at the end of each `npm install`acknowledging the number of dependencies looking for funding. See [`npmfund`](/commands/npm-fund) for details. #### `dry-run` * Default: false* Type: Boolean Indicates that you don't want npm to make any changes and that it shouldonly report what it would have done. This can be passed into any of thecommands that modify your local installation, eg, `install`, `update`,`dedupe`, `uninstall`, as well as `pack` and `publish`. Note: This is NOT honored by other network related commands, eg `dist-tags`,`owner`, etc. #### `workspace` * Default:* Type: String (can be set multiple times) Enable running a command in the context of the configured workspaces of thecurrent project while filtering by running only the workspaces defined bythis configuration option. Valid values for the `workspace` config are either: * Workspace names* Path to a workspace directory* Path to a parent workspace directory (will result in selecting all workspaces within that folder) When set for the `npm init` command, this may be set to the folder of aworkspace which does not yet exist, to create the folder and set it up as abrand new workspace within the project. This value is not exported to the environment for child processes. #### `workspaces` * Default: null* Type: null or Boolean Set to true to run the command in the context of **all** configuredworkspaces. Explicitly setting this to false will cause commands like `install` toignore workspaces altogether. When not set explicitly: - Commands that operate on the `node_modules` tree (install, update, etc.)will link workspaces into the `node_modules` folder. - Commands that doother things (test, exec, publish, etc.) will operate on the root project,_unless_ one or more workspaces are specified in the `workspace` config. This value is not exported to the environment for child processes. #### `include-workspace-root` * Default: false* Type: Boolean Include the workspace root when workspaces are enabled for a command. When false, specifying individual workspaces via the `workspace` config, orall workspaces via the `workspaces` flag, will cause npm to operate only onthe specified workspaces, and not on the root project. This value is not exported to the environment for child processes. #### `install-links` * Default: false* Type: Boolean When set file: protocol dependencies will be packed and installed as regulardependencies instead of creating a symlink. This option has no effect onworkspaces. ### See Also * [npm install-test](/commands/npm-install-test)* [npm ci](/commands/npm-ci)* [npm test](/commands/npm-test)