Skip to content
Open
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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [18.x]
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Indentation issue: The 'runs-on', 'strategy', and 'steps' keys under the 'build' job should be indented two spaces further to be children of 'build'. This is important for correct YAML parsing in GitHub Actions workflows.


steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Indentation issue: The 'uses', 'with', and subsequent steps should be indented to match the 'steps' key. Please adjust indentation for proper workflow execution.

with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
Loading