Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-01 00:21:57 +00:00
parent a94cb9991c
commit 2a88b0bbe0
12 changed files with 231 additions and 17 deletions

18
tldr/npm-install-ci-test Normal file
View File

@@ -0,0 +1,18 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# npm install-ci-test
> Install project dependencies and run tests in a single command, mainly used in continuous integration (CI) environments.
> Equivalent to running `npm ci && npm test`.
> More information: <https://docs.npmjs.com/cli/install-ci-test>.
- Install dependencies and run tests:
`npm {{[cit|install-ci-test]}}`
- Display detailed logs during installation and testing:
`npm {{[cit|install-ci-test]}} --verbose`