Skip to content

Commit c18ec17

Browse files
committed
💚 Fix CI
1 parent 6ab4e5d commit c18ec17

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/publish-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: install essentials
3131
run: |
3232
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
3434
3535
- name: Cache node dependencies
3636
uses: actions/cache@v3

.github/workflows/run-tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: install essentials
3030
run: |
3131
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
3333
3434
- name: Cache node dependencies
3535
uses: actions/cache@v3
@@ -39,9 +39,6 @@ jobs:
3939

4040
- name: install node_modules
4141
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"
4542
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
4643
yarn --frozen-lockfile --network-concurrency 2
4744

client/sdk/src/idl/tens.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export type Tens = {
1+
export interface Tens {
22
version: "0.1.0";
33
name: "tens";
44
instructions: [
@@ -213,7 +213,7 @@ export type Tens = {
213213
};
214214
}
215215
];
216-
};
216+
}
217217

218218
export const IDL: Tens = {
219219
version: "0.1.0",

0 commit comments

Comments
 (0)