Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 552 Bytes

CICD.md

File metadata and controls

25 lines (17 loc) · 552 Bytes

CICD Commands

Installer command to ensure that the exact versions of dependencies specified in the lock file are installed:

pnpm bootstrap:ci

Found in the workflow .yml cicd files, this command will run all three tasks in parallel for only affected files:

npx nx affected -t build,lint,test --parallel=3

Versioning command that will bypass prompts for avoiding manual intervention:

pnpm version:ci

Publishing command that will bypass prompts for avoiding manual intervention:

pnpm publish:ci