-
Notifications
You must be signed in to change notification settings - Fork 3
Update internal Node version and GitHub actions #48
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 1 commit
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -15,10 +15,12 @@ jobs: | |||||||||
| name: Prettier | ||||||||||
| runs-on: ubuntu-latest | ||||||||||
| steps: | ||||||||||
| - uses: actions/checkout@v4 | ||||||||||
| - uses: actions/setup-node@v4 | ||||||||||
| - name: Checkout | ||||||||||
| uses: actions/checkout@v6 | ||||||||||
| - name: Setup Node | ||||||||||
| - uses: actions/setup-node@v6 | ||||||||||
| with: | ||||||||||
| node-version: 20 | ||||||||||
| node-version-file: .nvmrc | ||||||||||
| - name: Install Dependencies | ||||||||||
| run: npm install | ||||||||||
| - name: Prettier | ||||||||||
|
|
@@ -28,10 +30,12 @@ jobs: | |||||||||
| name: Lint | ||||||||||
| runs-on: ubuntu-latest | ||||||||||
| steps: | ||||||||||
| - uses: actions/checkout@v4 | ||||||||||
| - uses: actions/setup-node@v4 | ||||||||||
| - name: Checkout | ||||||||||
| uses: actions/checkout@v6 | ||||||||||
| - name: Setup Node | ||||||||||
| - uses: actions/setup-node@v6 | ||||||||||
|
||||||||||
| - name: Setup Node | |
| - uses: actions/setup-node@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 |
Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/ci.yml
Line: 35:36
Comment:
**syntax:** invalid YAML syntax - missing `uses` on the same line as the step name
```suggestion
- name: Setup Node
uses: actions/setup-node@v6
```
How can I resolve this? If you propose a fix, please make it concise.
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
syntax: invalid YAML syntax - missing uses on the same line as the step name
| - name: Setup Node | |
| - uses: actions/setup-node@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 |
Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/ci.yml
Line: 68:69
Comment:
**syntax:** invalid YAML syntax - missing `uses` on the same line as the step name
```suggestion
- name: Setup Node
uses: actions/setup-node@v6
```
How can I resolve this? If you propose a fix, please make it concise.| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -14,14 +14,14 @@ jobs: | |||||
| separator: ' ' | ||||||
|
|
||||||
| - name: Checkout the ${{github.base_ref}} branch | ||||||
| uses: actions/checkout@v4 | ||||||
| uses: actions/checkout@v6 | ||||||
| with: | ||||||
| ref: ${{github.base_ref}} # checkout the base branch (usually master/main). | ||||||
|
|
||||||
| - name: Use Node.js 20.x | ||||||
|
||||||
| - name: Use Node.js 20.x | |
| - name: Use Node.js |
Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/coana-guardrail.yml
Line: 21:21
Comment:
**style:** step name now references "Node.js 20.x" but actually uses version 24 from `.nvmrc`
```suggestion
- name: Use Node.js
```
How can I resolve this? If you propose a fix, please make it concise.This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 24 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
syntax: invalid YAML syntax - missing
useson the same line as the step namePrompt To Fix With AI