Skip to content

Commit

Permalink
chore(ci): fix node version check (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
VaiTon authored Nov 2, 2024
1 parent 825954c commit 9d78f98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 19.x, 20.x, 21.x]
node-version: [18.x, 20.x, 22.x, 23.x]

steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
if: ${{ matrix.node-version }} == '20.x'
if: matrix.node-version == '22.x'
with:
path: "docs"

Expand Down

0 comments on commit 9d78f98

Please sign in to comment.