Skip to content

Commit

Permalink
ci: change node-version from '>=18.x' to 18.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Jikun committed Oct 31, 2023
1 parent affefb2 commit 64a4808
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
node-version: [14.x, 15.x, 16.x, 17.x, '>= 18.x']
node-version: [14.x, 15.x, 16.x, 17.x, 18.x]

name: "test: use node ${{ matrix.node-version }}"
steps:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
node-version: [14.x, 15.x, 16.x, 17.x, '>= 18.x']
node-version: [14.x, 15.x, 16.x, 17.x, 18.x]

name: "deploy: use node ${{ matrix.node-version }}"
steps:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
node-version: [14.x, 15.x, 16.x, 17.x, '>= 18.x']
node-version: [14.x, 15.x, 16.x, 17.x, 18.x]

name: "test: use node ${{ matrix.node-version }}"
steps:
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
node-version: [14.x, 15.x, 16.x, 17.x, '>= 18.x']
node-version: [14.x, 15.x, 16.x, 17.x, 18.x]

name: "deploy: use node ${{ matrix.node-version }}"
steps:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
node-version: [14.x, 15.x, 16.x, 17.x, '>= 18.x']
node-version: [14.x, 15.x, 16.x, 17.x, 18.x]

name: "test: use node ${{ matrix.node-version }}"
steps:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
node-version: [14.x, 15.x, 16.x, 17.x, '>= 18.x']
node-version: [14.x, 15.x, 16.x, 17.x, 18.x]

name: "deploy: use node ${{ matrix.node-version }}"
steps:
Expand Down

0 comments on commit 64a4808

Please sign in to comment.