File tree Expand file tree Collapse file tree 24 files changed +61
-28
lines changed Expand file tree Collapse file tree 24 files changed +61
-28
lines changed Original file line number Diff line number Diff line change 52
52
with :
53
53
node-version : 20
54
54
cache : ' pnpm'
55
+ working-directory : ${{ github.workspace }}
55
56
56
57
- name : Install Dependencies (if not restored from cache)
57
58
if : steps.dep-cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change @@ -31,21 +31,21 @@ concurrency:
31
31
jobs :
32
32
test-block :
33
33
runs-on : ubuntu-latest
34
- steps :
34
+ steps :
35
35
# We clone the repo and submodules if triggered from work-flow dispatch
36
36
- if : inputs.submodule-cache-key == 'none'
37
37
uses : actions/checkout@v5
38
38
with :
39
39
submodules : recursive
40
40
41
41
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
42
- - if : inputs.dep-cache-key != 'none'
42
+ - if : inputs.dep-cache-key != 'none'
43
43
uses : actions/cache/restore@v4
44
44
id : dep-cache
45
45
with :
46
46
path : ${{github.workspace}}
47
47
key : ${{ inputs.dep-cache-key }}
48
-
48
+
49
49
- uses : pnpm/action-setup@v4
50
50
with :
51
51
version : 10.5.2
56
56
with :
57
57
node-version : 20
58
58
cache : ' pnpm'
59
+ working-directory : ${{ github.workspace }}
59
60
60
61
- name : Install Dependencies (if called from workflow_dispatch)
61
62
if : steps.dep-cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ jobs:
33
33
- if : inputs.submodule-cache-key == 'none'
34
34
uses : actions/checkout@v5
35
35
36
- # We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
36
+ # We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
37
37
- uses : actions/cache/restore@v4
38
38
id : dep-cache
39
39
with :
40
40
path : ${{github.workspace}}
41
41
key : ${{ inputs.dep-cache-key }}
42
-
42
+
43
43
- uses : pnpm/action-setup@v4
44
44
with :
45
45
version : 10.5.2
@@ -50,12 +50,14 @@ jobs:
50
50
with :
51
51
node-version : 20
52
52
cache : ' pnpm'
53
+ working-directory : ${{ github.workspace }}
54
+ working-directory : ${{ github.workspace }}
53
55
54
56
- name : Install Dependencies (if called from workflow_dispatch)
55
57
if : steps.dep-cache.outputs.cache-hit != 'true'
56
58
run : pnpm install --frozen-lockfile
57
59
working-directory : ${{ github.workspace }}
58
-
60
+
59
61
- run : pnpm run coverage
60
62
- uses : codecov/codecov-action@v4
61
63
with :
Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ jobs:
38
38
submodules : recursive
39
39
40
40
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
41
- - if : inputs.dep-cache-key != 'none'
41
+ - if : inputs.dep-cache-key != 'none'
42
42
uses : actions/cache/restore@v4
43
43
id : dep-cache
44
44
with :
45
45
path : ${{github.workspace}}
46
46
key : ${{ inputs.dep-cache-key }}
47
-
47
+
48
48
- uses : pnpm/action-setup@v4
49
49
with :
50
50
version : 10.5.2
55
55
with :
56
56
node-version : 20
57
57
cache : ' pnpm'
58
+ working-directory : ${{ github.workspace }}
58
59
59
60
- name : Install Dependencies (if called from workflow_dispatch)
60
61
if : steps.dep-cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change 36
36
- if : inputs.submodule-cache-key == 'none'
37
37
uses : actions/checkout@v5
38
38
39
- - if : inputs.dep-cache-key != 'none'
39
+ - if : inputs.dep-cache-key != 'none'
40
40
uses : actions/cache/restore@v4
41
41
id : dep-cache
42
42
with :
53
53
with :
54
54
node-version : 20
55
55
cache : ' pnpm'
56
+ working-directory : ${{ github.workspace }}
56
57
57
58
- name : Install Dependencies (if not restored from cache)
58
59
if : steps.dep-cache.outputs.cache-hit != 'true'
81
82
uses : actions/checkout@v5
82
83
83
84
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
84
- - if : inputs.dep-cache-key != 'none'
85
+ - if : inputs.dep-cache-key != 'none'
85
86
uses : actions/cache/restore@v4
86
87
id : dep-cache
87
88
with :
98
99
with :
99
100
node-version : 20
100
101
cache : ' pnpm'
102
+ working-directory : ${{ github.workspace }}
101
103
102
104
- name : Install Dependencies (if not restored from cache)
103
105
if : steps.dep-cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change 35
35
uses : actions/checkout@v5
36
36
37
37
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
38
- - if : inputs.dep-cache-key != 'none'
38
+ - if : inputs.dep-cache-key != 'none'
39
39
uses : actions/cache/restore@v4
40
40
id : dep-cache
41
41
with :
52
52
with :
53
53
node-version : 20
54
54
cache : ' pnpm'
55
+ working-directory : ${{ github.workspace }}
55
56
56
57
- name : Install Dependencies (if not restored from cache)
57
58
if : steps.dep-cache.outputs.cache-hit != 'true'
69
70
# Run coverage for util
70
71
- run : pnpm run coverage
71
72
working-directory : ${{ github.workspace }}/packages/util
72
-
73
+
73
74
- uses : codecov/codecov-action@v4
74
75
with :
75
76
token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 32
32
uses : actions/checkout@v5
33
33
34
34
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
35
- - if : inputs.dep-cache-key != 'none'
35
+ - if : inputs.dep-cache-key != 'none'
36
36
uses : actions/cache/restore@v4
37
37
id : dep-cache
38
38
with :
@@ -49,13 +49,14 @@ jobs:
49
49
with :
50
50
node-version : 20
51
51
cache : ' pnpm'
52
+ working-directory : ${{ github.workspace }}
52
53
53
54
- name : Install Dependencies (if not restored from cache)
54
55
if : steps.dep-cache.outputs.cache-hit != 'true'
55
56
run : pnpm install --frozen-lockfile
56
57
working-directory : ${{ github.workspace }}
57
58
58
-
59
+
59
60
- run : pnpm run coverage
60
61
working-directory : ${{ github.workspace }}/packages/devp2p
61
62
- uses : codecov/codecov-action@v4
Original file line number Diff line number Diff line change 40
40
with :
41
41
node-version : ${{ matrix.node-version }}
42
42
cache : ' pnpm'
43
+ working-directory : ${{ github.workspace }}
43
44
44
45
- run : pnpm install --frozen-lockfile
45
46
working-directory : ${{ github.workspace }}
Original file line number Diff line number Diff line change 39
39
submodules : recursive
40
40
41
41
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
42
- - if : inputs.dep-cache-key != 'none'
42
+ - if : inputs.dep-cache-key != 'none'
43
43
uses : actions/cache/restore@v4
44
44
id : dep-cache
45
45
with :
@@ -56,12 +56,13 @@ jobs:
56
56
with :
57
57
node-version : 20
58
58
cache : ' pnpm'
59
+ working-directory : ${{ github.workspace }}
59
60
60
61
- name : Install Dependencies (if not restored from cache)
61
62
if : steps.dep-cache.outputs.cache-hit != 'true'
62
63
run : pnpm install --frozen-lockfile
63
64
working-directory : ${{ github.workspace }}
64
-
65
+
65
66
- if : inputs.submodule-cache-key != 'none'
66
67
uses : actions/cache/restore@v4
67
68
name : Initialize ethereum-tests
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ jobs:
29
29
submodules : recursive
30
30
31
31
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
32
- - if : inputs.dep-cache-key != 'none'
32
+ - if : inputs.dep-cache-key != 'none'
33
33
uses : actions/cache/restore@v4
34
34
id : dep-cache
35
35
with :
36
36
path : ${{github.workspace}}
37
37
key : ${{ inputs.dep-cache-key }}
38
-
38
+
39
39
- uses : pnpm/action-setup@v4
40
40
with :
41
41
version : 10.5.2
46
46
with :
47
47
node-version : 20
48
48
cache : ' pnpm'
49
+ working-directory : ${{ github.workspace }}
49
50
50
51
- name : Install Dependencies (if not restored from cache)
51
52
if : steps.dep-cache.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments