Skip to content

Commit 21f0a49

Browse files
authored
chore: Bump nodejs version in runners to v20 (#698)
* chore: Bump nodejs version in runners to v20 * fix: remove peer deps flag from test workflow
1 parent 8d3747a commit 21f0a49

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish-radfish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup Node.js
5353
uses: actions/setup-node@v4
5454
with:
55-
node-version: '18'
55+
node-version: "20"
5656
registry-url: 'https://registry.npmjs.org'
5757

5858
- name: Install dependencies

.github/workflows/publish-react-radfish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup Node.js
5353
uses: actions/setup-node@v4
5454
with:
55-
node-version: '18'
55+
node-version: "20"
5656
registry-url: 'https://registry.npmjs.org'
5757

5858
- name: Install dependencies

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Use Node.js
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: "18"
18+
node-version: "20"
1919

2020
- name: Install workspace dependencies
2121
run: npm install
@@ -35,7 +35,7 @@ jobs:
3535
working-directory: .
3636

3737
- name: Install dependencies
38-
run: npm install --legacy-peer-deps
38+
run: npm install
3939
working-directory: templates/react-javascript
4040

4141
- name: Build project

0 commit comments

Comments
 (0)