Skip to content

Commit d67bc01

Browse files
fix: used node 18 to fix release workflow which has latest semantic release (#431)
1 parent f90d4af commit d67bc01

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,10 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616

17-
- name: Setup Node.js Env
18-
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
19-
2017
- name: Setup Node.js
2118
uses: actions/setup-node@v3
2219
with:
23-
node-version: "${{ env.NODE_VER }}"
24-
25-
# 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
26-
# 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.
27-
- name: Pin NPM version
28-
run: npm install -g [email protected]
20+
node-version: 18
2921

3022
- name: Install dependencies
3123
run: npm ci

0 commit comments

Comments
 (0)