Skip to content

Commit a4103c3

Browse files
committed
chore: upgrade to node >=20
1 parent ed97e8f commit a4103c3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 18, 20 ]
9+
node: [ 20 ]
1010
name: Linting on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v3

.github/workflows/prettier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 18, 20 ]
9+
node: [ 20 ]
1010
name: Prettier on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v3

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 18, 20 ]
9+
node: [ 20, 22 ]
1010
name: Run tests on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v3
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: windows-latest
2121
strategy:
2222
matrix:
23-
node: [ 18, 20 ]
23+
node: [ 20, 22 ]
2424
name: Run tests on Windows with Node ${{ matrix.node }}
2525
steps:
2626
- uses: actions/checkout@v3

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@
8080
"trailingComma": "none"
8181
},
8282
"engines": {
83-
"node": ">=18"
83+
"node": ">=20"
8484
},
8585
"peerDependencies": {
8686
"eslint": ">=7"
8787
},
8888
"volta": {
89-
"node": "20.16.0",
89+
"node": "20.18.0",
9090
"yarn": "1.22.22"
9191
}
9292
}

0 commit comments

Comments
 (0)