File tree 3 files changed +4
-7
lines changed
3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 30
30
- name : install essentials
31
31
run : |
32
32
sudo apt-get update
33
- sudo apt-get install -y pkg-config build-essential libudev-dev openssh-client
33
+ sudo apt-get install -y pkg-config build-essential libudev-dev
34
34
35
35
- name : Cache node dependencies
36
36
uses : actions/cache@v3
Original file line number Diff line number Diff line change 29
29
- name : install essentials
30
30
run : |
31
31
sudo apt-get update
32
- sudo apt-get install -y pkg-config build-essential libudev-dev openssh-client git
32
+ sudo apt-get install -y pkg-config build-essential libudev-dev
33
33
34
34
- name : Cache node dependencies
35
35
uses : actions/cache@v3
39
39
40
40
- name : install node_modules
41
41
run : |
42
- ssh-keygen -t rsa -q -f "$HOME/.ssh/id_rsa" -N ""
43
- git config --global user.email "[email protected] "
44
- git config --global user.name "CI/CD"
45
42
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
46
43
yarn --frozen-lockfile --network-concurrency 2
47
44
Original file line number Diff line number Diff line change 1
- export type Tens = {
1
+ export interface Tens {
2
2
version : "0.1.0" ;
3
3
name : "tens" ;
4
4
instructions : [
@@ -213,7 +213,7 @@ export type Tens = {
213
213
} ;
214
214
}
215
215
] ;
216
- } ;
216
+ }
217
217
218
218
export const IDL : Tens = {
219
219
version : "0.1.0" ,
You can’t perform that action at this time.
0 commit comments