-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: pin npm to 8.5.x in release.yml (#350)
- Loading branch information
1 parent
b38476e
commit 7c9ace2
Showing
1 changed file
with
5 additions
and
0 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 |
---|---|---|
|
@@ -22,6 +22,11 @@ jobs: | |
with: | ||
node-version: "${{ env.NODE_VER }}" | ||
|
||
# This is a temporary "hack" to unblock CI/releases, as ideally we should avoid needing to pin NPM to a specific minor version. By doing | ||
# so, we are basically deferring clean up of peer dependencies to a later time. See https://github.com/npm/cli/issues/4664 for more details. | ||
- name: Pin NPM version | ||
run: npm install -g [email protected] | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
|