File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 14
14
fail-fast : false
15
15
matrix :
16
16
os : [ubuntu-latest, windows-latest, macos-latest]
17
- node-version : [16, 18, 20]
17
+ node-version : [18, 20, 22 ]
18
18
runs-on : ${{ matrix.os }}
19
19
# To use Remote Caching, uncomment the next lines and follow the steps below.
20
20
# env:
@@ -27,13 +27,13 @@ jobs:
27
27
with :
28
28
fetch-depth : 2
29
29
30
- - uses : pnpm/action-setup@v2
30
+ - uses : pnpm/action-setup@v4
31
31
32
32
- name : Setup Node.js environment
33
- uses : actions/setup-node@v3
33
+ uses : actions/setup-node@v4
34
34
with :
35
35
node-version : ${{ matrix.node-version }}
36
- cache : ' pnpm'
36
+ cache : " pnpm"
37
37
38
38
- name : Install dependencies
39
39
run : pnpm install
42
42
run : pnpm build
43
43
44
44
- name : Test
45
- run : pnpm _test
45
+ run : pnpm test
46
46
47
47
- name : Upload coverage reports to Codecov
48
- uses : codecov/codecov-action@v3
48
+ uses : codecov/codecov-action@v4
49
49
env :
50
50
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ jobs:
16
16
- name : Checkout Repo
17
17
uses : actions/checkout@v4
18
18
19
- - uses : pnpm/action-setup@v2
19
+ - uses : pnpm/action-setup@v4
20
20
21
21
- name : Setup Node.js environment
22
- uses : actions/setup-node@v3
22
+ uses : actions/setup-node@v4
23
23
with :
24
- node-version : 18
24
+ node-version : 20
25
25
cache : ' pnpm'
26
26
cache-dependency-path : ' **/pnpm-lock.yaml'
27
27
43
43
npm_config_registry : https://registry.npmjs.org
44
44
45
45
- name : Upload coverage reports to Codecov
46
- uses : codecov/codecov-action@v3
46
+ uses : codecov/codecov-action@v4
47
47
env :
48
48
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments