File tree 1 file changed +16
-4
lines changed
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
6
6
env :
7
- solana_version : v1.16.14
7
+ solana_version : v1.18.17
8
8
VERBOSE : 1
9
9
10
10
jobs :
11
11
install :
12
+ strategy :
13
+ matrix :
14
+ node : [ 20 ]
12
15
runs-on : ubuntu-latest
13
16
steps :
14
17
- uses : actions/checkout@v3
24
27
25
28
- uses : actions/setup-node@v3
26
29
with :
27
- node-version : ' 16 '
30
+ node-version : ${{ matrix.node }}
28
31
29
32
- name : Cache node dependencies
30
33
uses : actions/cache@v3
59
62
solana --version
60
63
61
64
lint-program :
65
+ strategy :
66
+ matrix :
67
+ node : [ 20 ]
62
68
needs : install
63
69
runs-on : ubuntu-latest
64
70
72
78
run : cargo clippy -- --deny=warnings
73
79
74
80
lint-client :
81
+ strategy :
82
+ matrix :
83
+ node : [ 20 ]
75
84
needs : install
76
85
runs-on : ubuntu-latest
77
86
steps :
80
89
- name : Use Node ${{ matrix.node }}
81
90
uses : actions/setup-node@v3
82
91
with :
83
- node-version : ' 16 '
92
+ node-version : ${{ matrix.node }}
84
93
85
94
- name : Cache node dependencies
86
95
uses : actions/cache@v3
97
106
98
107
99
108
test :
109
+ strategy :
110
+ matrix :
111
+ node : [ 20 ]
100
112
needs : [lint-client, lint-program]
101
113
runs-on : ubuntu-latest
102
114
@@ -106,7 +118,7 @@ jobs:
106
118
- name : Use Node ${{ matrix.node }}
107
119
uses : actions/setup-node@v3
108
120
with :
109
- node-version : ' 16 '
121
+ node-version : ${{ matrix.node }}
110
122
111
123
- name : Cache node dependencies
112
124
uses : actions/cache@v3
You can’t perform that action at this time.
0 commit comments