Skip to content

Commit ff94c04

Browse files
committed
ci: donwgrade nodejs to 22
1 parent d2b019d commit ff94c04

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/health-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
run_install: false
2121

2222
# https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
23-
- name: Use Node.js 24.x
23+
- name: Use Node.js 22.x
2424
uses: actions/setup-node@v5
2525
with:
26-
node-version: 24.x
26+
node-version: 22.x
2727
cache: pnpm
2828

2929
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
version: 10
2424
run_install: false
2525

26-
- name: Use Node.js 24.x
26+
- name: Use Node.js 22.x
2727
uses: actions/setup-node@v5
2828
with:
29-
node-version: 24.x
29+
node-version: 22.x
3030
cache: pnpm
3131

3232
- name: Install dependencies
@@ -49,10 +49,10 @@ jobs:
4949
version: 10
5050
run_install: false
5151

52-
- name: Use Node.js 24.x
52+
- name: Use Node.js 22.x
5353
uses: actions/setup-node@v5
5454
with:
55-
node-version: 24.x
55+
node-version: 22.x
5656
cache: pnpm
5757

5858
- name: Install dependencies
@@ -77,10 +77,10 @@ jobs:
7777
version: 10
7878
run_install: false
7979

80-
- name: Use Node.js 24.x
80+
- name: Use Node.js 22.x
8181
uses: actions/setup-node@v5
8282
with:
83-
node-version: 24.x
83+
node-version: 22.x
8484
cache: pnpm
8585

8686
- name: Install dependencies
@@ -112,7 +112,7 @@ jobs:
112112

113113
- uses: pnpm/action-setup@v4
114114
with:
115-
version: 9
115+
version: 10
116116
run_install: false
117117

118118
- name: Use Node.js 22.x

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"type-check": "vue-tsc --noEmit",
1212
"lint": "eslint --fix .",
1313
"test": "npm run test:unit && npm run test:playwright",
14-
"test:cypress": "npm run build && concurrently -rk -s first \"npm run serve\" \"cypress run --e2e",
14+
"test:cypress": "npm run build && concurrently -rk -s first \"npm run serve\" \"cypress run --e2e\"",
1515
"test:cypress:ui": "cypress open --e2e",
1616
"test:cyprsss:prod": "cypress run --e2e -c baseUrl=https://vue3-realworld-example-app-mutoe.vercel.app",
1717
"test:playwright": "npm run build && cross-env CI=true playwright test",

0 commit comments

Comments
 (0)