Skip to content

Commit eff73ec

Browse files
authored
chore: simple pnpm file && update action workflow node version to 22 (#7566)
1 parent 29a5024 commit eff73ec

12 files changed

+457
-240
lines changed

.github/workflows/check-dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
- name: Install Pnpm
2222
uses: pnpm/action-setup@v4
2323

24-
- name: Setup Node.js 18
24+
- name: Setup Node.js 22
2525
uses: actions/setup-node@v3
2626
with:
27-
node-version: 18
27+
node-version: 22
2828
cache: 'pnpm'
2929

3030
- name: Install dependencies

.github/workflows/integration-test-Linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
- name: Log skip CI result
3838
run: echo "${{steps.skip-ci.outputs.RESULT}}"
3939

40-
- name: Setup Node.js 18.x
40+
- name: Setup Node.js 22.x
4141
uses: actions/setup-node@v3
4242
with:
43-
node-version: 18.x
43+
node-version: 22.x
4444
cache: 'pnpm'
4545

4646
- name: Nx Cache

.github/workflows/integration-test-Windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ jobs:
4343
- name: Log skip CI result
4444
run: echo "${{steps.skip-ci.outputs.RESULT}}"
4545

46-
- name: Setup Node.js 18.x
46+
- name: Setup Node.js 22.x
4747
uses: actions/setup-node@v3
4848
with:
49-
node-version: 18.x
49+
node-version: 22.x
5050
cache: 'pnpm'
5151

5252
- name: Nx Cache

.github/workflows/lint-Linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
- name: Install Pnpm
3333
run: npm i -g --force corepack && corepack enable
3434

35-
- name: Setup Node.js 20
35+
- name: Setup Node.js 22
3636
uses: actions/setup-node@v3
3737
with:
38-
node-version: "20"
38+
node-version: "22"
3939
cache: 'pnpm'
4040

4141
- name: Install Dependencies

.github/workflows/test-Windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444
- name: Log skip CI result
4545
run: echo "${{steps.skip-ci.outputs.RESULT}}"
4646

47-
- name: Setup Node.js 18
47+
- name: Setup Node.js 22
4848
uses: actions/setup-node@v3
4949
with:
50-
node-version: "18"
50+
node-version: "22"
5151
cache: 'pnpm'
5252

5353
- name: Install Dependencies

.github/workflows/test-builder-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
- name: Install Pnpm
3232
run: npm i -g --force corepack && corepack enable
3333

34-
- name: Setup Node.js 18
34+
- name: Setup Node.js 22
3535
uses: actions/setup-node@v3
3636
with:
37-
node-version: '18'
37+
node-version: '22'
3838
cache: 'pnpm'
3939

4040
- name: Install Dependencies

.github/workflows/test-macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
- name: Log skip CI result
3939
run: echo "${{steps.skip-ci.outputs.RESULT}}"
4040

41-
- name: Setup Node.js 18
41+
- name: Setup Node.js 22
4242
uses: actions/setup-node@v3
4343
with:
44-
node-version: "18"
44+
node-version: "22"
4545
cache: 'pnpm'
4646

4747
- name: Install Dependencies

.github/workflows/type-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
- name: Install Pnpm
2727
uses: pnpm/action-setup@v4
2828

29-
- name: Setup Node.js 18
29+
- name: Setup Node.js 22
3030
uses: actions/setup-node@v3
3131
with:
32-
node-version: 18
32+
node-version: 22
3333
cache: 'pnpm'
3434

3535
- name: Check skip CI

.github/workflows/vitest-Windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
- name: Log skip CI result
4040
run: echo "${{steps.skip-ci.outputs.RESULT}}"
4141

42-
- name: Setup Node.js 18
42+
- name: Setup Node.js 22
4343
uses: actions/setup-node@v3
4444
with:
45-
node-version: "18"
45+
node-version: "22"
4646
cache: 'pnpm'
4747

4848
- name: Install Dependencies

.github/workflows/vitest-macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
- name: Log skip CI result
3939
run: echo "${{steps.skip-ci.outputs.RESULT}}"
4040

41-
- name: Setup Node.js 18
41+
- name: Setup Node.js 22
4242
uses: actions/setup-node@v3
4343
with:
44-
node-version: "18"
44+
node-version: "22"
4545
cache: 'pnpm'
4646

4747
- name: Install Dependencies

0 commit comments

Comments
 (0)