Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup Node (PR Summary)
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: source-folder/pr-summary/.node-version
node-version-file: source-folder/.tool-versions
cache: npm
cache-dependency-path: source-folder/pr-summary/package-lock.json
- name: Build (PR Summary)
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Setup Node (PR Review)
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: source-folder/pr-review/.node-version
node-version-file: source-folder/.tool-versions
cache: npm
cache-dependency-path: source-folder/pr-review/package-lock.json
- name: Build (PR Summary)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's an inconsistency in the step names. The first setup is for "PR Summary" but the second build step is also labeled "PR Summary" instead of "PR Review". This creates confusion and makes debugging harder.

- name: Build (PR Review)

This should match the context of the PR Review setup step above it.

Expand Down
9 changes: 9 additions & 0 deletions .renovaterc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@
"/^eslint$/"
]
},
{
"matchManagers": [
"asdf"
],
"matchUpdateTypes": [
"major"
],
"enabled": false
},
{
"matchDepTypes": [
"action"
Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodejs 20.19.4

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a comment to explain the purpose of this file and the Node.js version choice. This improves maintainability and helps other developers understand the tooling decisions.

# asdf tool versions file
# Node.js version used across the project
nodejs 20.19.4

Also, ensure this Node.js version (20.19.4) is the intended version, as it appears you're downgrading from 22.17.1 based on the deleted files.

1 change: 0 additions & 1 deletion pr-review/.node-version

This file was deleted.

1 change: 0 additions & 1 deletion pr-summary/.node-version

This file was deleted.