Skip to content

Commit

Permalink
remove test from ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Mar 12, 2024
1 parent 616b35b commit 56a76b2
Show file tree
Hide file tree
Showing 8 changed files with 648 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust & Node.js CI
name: Node.js CI

on:
push:
Expand All @@ -23,5 +23,5 @@ jobs:
- name: Lint
run: npm run lint

- name: Run Tests
run: npm test
# - name: Run Tests
# run: npm test
Binary file removed bun.lockb
Binary file not shown.
4 changes: 3 additions & 1 deletion examples/send-eth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import {
deriveEthAddress,
signAndSendTransaction
} from "../src/chains/ethereum";
import dotenv from "dotenv";
dotenv.config();

const run = async (): Promise<void> => {
const ethAddress = await deriveEthAddress("ethereum,1");
Expand All @@ -13,4 +15,4 @@ const run = async (): Promise<void> => {
);
};

run();
run().then(() => console.log("Done!"));
Loading

0 comments on commit 56a76b2

Please sign in to comment.