Skip to content

Commit 3c1a220

Browse files
committed
ci: update pnpm version in the CI
1 parent c169814 commit 3c1a220

File tree

3 files changed

+16
-35
lines changed

3 files changed

+16
-35
lines changed

.github/workflows/health-check.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,19 @@ on:
44
schedule:
55
- cron: '35 17 */4 * 4'
66

7+
env:
8+
CI: true
9+
710
jobs:
811
e2e_tests:
912
name: E2E test
10-
env:
11-
CI: true
12-
1313
runs-on: ubuntu-latest
14-
1514
steps:
1615
- uses: actions/checkout@v4
1716

1817
- uses: pnpm/action-setup@v4
1918
with:
20-
version: 8
19+
version: 9
2120
run_install: false
2221

2322
# https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping

.github/workflows/pull-request.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,19 @@ on:
55
paths-ignore:
66
- '**.md'
77

8+
env:
9+
CI: true
10+
811
jobs:
912
lint:
1013
name: Lint
11-
env:
12-
CI: true
13-
1414
runs-on: ubuntu-latest
15-
1615
steps:
1716
- uses: actions/checkout@v4
1817

1918
- uses: pnpm/action-setup@v4
2019
with:
21-
version: 8
20+
version: 9
2221
run_install: false
2322

2423
- name: Use Node.js 20.x
@@ -38,17 +37,13 @@ jobs:
3837

3938
unit_test:
4039
name: Unit test
41-
env:
42-
CI: true
43-
4440
runs-on: ubuntu-latest
45-
4641
steps:
4742
- uses: actions/checkout@v4
4843

4944
- uses: pnpm/action-setup@v4
5045
with:
51-
version: 8
46+
version: 9
5247
run_install: false
5348

5449
- name: Use Node.js 20.x
@@ -85,17 +80,13 @@ jobs:
8580

8681
e2e_tests:
8782
name: E2E test
88-
env:
89-
CI: true
90-
9183
runs-on: ubuntu-latest
92-
9384
steps:
9485
- uses: actions/checkout@v4
9586

9687
- uses: pnpm/action-setup@v4
9788
with:
98-
version: 8
89+
version: 9
9990
run_install: false
10091

10192
- name: Use Node.js 20.x

.github/workflows/test.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,19 @@ on:
55
paths-ignore:
66
- '**.md'
77

8+
env:
9+
CI: true
10+
811
jobs:
912
lint:
1013
name: Lint
11-
env:
12-
CI: true
13-
1414
runs-on: ubuntu-latest
15-
1615
steps:
1716
- uses: actions/checkout@v4
1817

1918
- uses: pnpm/action-setup@v4
2019
with:
21-
version: 8
20+
version: 9
2221
run_install: false
2322

2423
- name: Use Node.js 20.x
@@ -38,17 +37,13 @@ jobs:
3837

3938
unit_test:
4039
name: Unit test
41-
env:
42-
CI: true
43-
4440
runs-on: ubuntu-latest
45-
4641
steps:
4742
- uses: actions/checkout@v4
4843

4944
- uses: pnpm/action-setup@v4
5045
with:
51-
version: 8
46+
version: 9
5247
run_install: false
5348

5449
- name: Use Node.js 20.x
@@ -85,17 +80,13 @@ jobs:
8580

8681
e2e_tests:
8782
name: E2E test
88-
env:
89-
CI: true
90-
9183
runs-on: ubuntu-latest
92-
9384
steps:
9485
- uses: actions/checkout@v4
9586

9687
- uses: pnpm/action-setup@v4
9788
with:
98-
version: 8
89+
version: 9
9990
run_install: false
10091

10192
- name: Use Node.js 20.x

0 commit comments

Comments
 (0)