-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
XLabs/portal-bridge-ui-issues#1 - set npm ci instead of npm install t…
…o avoid package-lock.json modifications
- Loading branch information
1 parent
37c7e84
commit 5322ff2
Showing
2 changed files
with
2 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,7 +88,7 @@ jobs: | |
git config user.name "xLabs CI" | ||
git config user.email "[email protected]" | ||
- name: Install dependencies | ||
run: npm install | ||
run: npm ci | ||
- name: Set Version | ||
run: | | ||
npm version $(node -p -e "require('./package.json').version")-P$(echo ${{ github.sha }} | cut -c -10) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
git config user.name "xLabs CI" | ||
git config user.email "[email protected]" | ||
- name: Install dependencies | ||
run: npm install | ||
run: npm ci | ||
- name: Set Version | ||
run: | | ||
npm version $(node -p -e "require('./package.json').version")-T$(echo ${{ github.sha }} | cut -c -10) | ||
|