Skip to content

Commit bd0c270

Browse files
committed
chore: upgrade to Node 22 (LTS)
1 parent 84cf6fe commit bd0c270

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [18, 20, 22]
11+
node-version: [18, 20, 22, 24]
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v4
@@ -28,5 +28,5 @@ jobs:
2828
run: npm run build
2929

3030
- name: Bundle
31-
if: ${{ matrix.node-version == 20 }}
31+
if: ${{ matrix.node-version == 22 }}
3232
run: npm run bundle

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@
5151
"@semantic-release/exec": "7.1.0",
5252
"@semantic-release/git": "10.0.1",
5353
"@stylistic/eslint-plugin": "4.2.0",
54-
"@tsconfig/node20": "20.1.5",
54+
"@tsconfig/node22": "22.0.2",
5555
"@types/inquirer": "8.2.6",
5656
"@types/inquirer-autocomplete-prompt": "2.0.0",
5757
"@types/lodash": "4.17.16",
5858
"@types/memoizee": "0.4.12",
59-
"@types/node": "20.17.48",
59+
"@types/node": "22.15.19",
6060
"@types/shelljs": "0.8.16",
6161
"@types/update-notifier": "5.1.0",
6262
"eslint": "9.27.0",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@tsconfig/node20/tsconfig.json",
2+
"extends": "@tsconfig/node22/tsconfig.json",
33
"compilerOptions": {
44
"rootDir": "./src",
55
"outDir": "./dist",

0 commit comments

Comments
 (0)