-
Notifications
You must be signed in to change notification settings - Fork 4
Tool versions for asdf version manager #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
ae639c7
516d4e0
3ca9db9
6f7326a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 | ||
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| cache: npm | ||
| cache-dependency-path: source-folder/pr-summary/package-lock.json | ||
| - name: Build (PR Summary) | ||
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
@@ -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) | ||
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| nodejs 20.19.4 | ||
daniel-richter marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. 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. |
||
This file was deleted.
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.