Skip to content

Commit 10f6a70

Browse files
authored
chore: require Node >=20.0.0 (#193)
1 parent 575397b commit 10f6a70

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// "remoteUser": "vscode",
1010
"features": {
1111
// For config options, see https://github.com/devcontainers/features/tree/main/src/node
12-
"ghcr.io/devcontainers/features/node:1": "18"
12+
"ghcr.io/devcontainers/features/node:1": "20"
1313
},
1414
"customizations": {
1515
"vscode": {

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
strategy:
3737
matrix:
38-
node: [18.x, 20.x, 22.x]
38+
node: [20.x, 22.x, 24.x]
3939
os: [ubuntu-latest, windows-latest, macos-latest]
4040
fail-fast: false
4141

@@ -67,7 +67,7 @@ jobs:
6767
run: pnpm run example:vite:build
6868

6969
- name: Publish and test example Storybook
70-
if: matrix.node == '18.x' && matrix.os == 'ubuntu-latest'
70+
if: matrix.node == '20.x' && matrix.os == 'ubuntu-latest'
7171
uses: chromaui/action@ac86f2ff0a458ffbce7b40698abd44c0fa34d4b6 # v13
7272
with:
7373
projectToken: '574df7cc3736'
@@ -77,5 +77,5 @@ jobs:
7777
debug: true
7878

7979
- name: Upload coverage
80-
if: matrix.node == '18.x' && matrix.os == 'ubuntu-latest'
80+
if: matrix.node == '20.x' && matrix.os == 'ubuntu-latest'
8181
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
"access": "public"
181181
},
182182
"engines": {
183-
"node": ">=18.0.0"
183+
"node": ">=20.0.0"
184184
},
185185
"storybook": {
186186
"displayName": "Vue CSF",

0 commit comments

Comments
 (0)