Skip to content

Commit 69fc442

Browse files
committed
Node 22
1 parent 9a56d3a commit 69fc442

File tree

8 files changed

+20
-19
lines changed

8 files changed

+20
-19
lines changed

.github/workflows/deploy-preview.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v4
88
- uses: actions/setup-node@v4
99
with:
10-
node-version: 20
10+
node-version: 22
1111
- name: Create temp serviceAccount.json
1212
run: echo "{}" > serviceAccount.json
1313
- run: npm ci

.github/workflows/deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v4
1111
- uses: actions/setup-node@v4
1212
with:
13-
node-version: 20
13+
node-version: 22
1414
- name: Create temp serviceAccount.json
1515
run: echo "{}" > serviceAccount.json
1616
- run: npm ci

.github/workflows/main.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup node
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: 20
29+
node-version: 22
3030

3131
- name: Install dependencies
3232
run: npm ci

functions/package-lock.json

+12-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

functions/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"module": "dist/index.js",
77
"type": "module",
88
"engines": {
9-
"node": "20",
9+
"node": "22",
1010
"npm": "10"
1111
},
1212
"scripts": {
@@ -27,7 +27,7 @@
2727
"node-fetch": "^3.3.2"
2828
},
2929
"devDependencies": {
30-
"@tsconfig/node20": "^20.1.4",
30+
"@tsconfig/node22": "^22.0.0",
3131
"concurrently": "^9.1.2",
3232
"cpx2": "^8.0.0",
3333
"typescript": "^5.8.2"

functions/tsconfig.json

+1-1
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
"noImplicitReturns": false,
55
"noUnusedLocals": true,

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"description": "Conference website template",
66
"engines": {
7-
"node": "20",
7+
"node": "22",
88
"npm": "10"
99
},
1010
"scripts": {

0 commit comments

Comments
 (0)