Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Prefer verbose
npm
command as bread crumb
Likely due to ignorance of the npm ecosystem, I found myself thinking that `npm ci` was perhaps a directive to execute a **C**ontinuous **I**ntegration workflow, rather than doing a clean install. Updating these references in case any future developers share my ignorance.
- Loading branch information
Landon Grindheim
authored and
GitHub
committed
May 5, 2022
1 parent
353b165
commit a3d7673b3034efe762c60f9b1930fe7ba6ed5011
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -26,7 +26,7 @@ jobs: | ||
node-version: ${{ steps.nvm.outputs.NVMRC }} | ||
|
||
- name: Install npm dependencies | ||
run: npm ci | ||
run: npm clean-install | ||
|
||
- name: Rebuild the dist/ directory | ||
run: npm run package | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -27,7 +27,7 @@ jobs: | ||
node-version: ${{ steps.nvm.outputs.NVMRC }} | ||
|
||
- name: Install npm dependencies | ||
run: npm ci | ||
run: npm clean-install | ||
|
||
- name: Pre-fetch the pinned images | ||
run: npm run fetch-images | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -25,7 +25,7 @@ jobs: | ||
node-version: ${{ steps.nvm.outputs.NVMRC }} | ||
|
||
- name: Install npm dependencies | ||
run: npm ci | ||
run: npm clean-install | ||
|
||
- name: Check formatting | ||
run: npm run format-check | ||