Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,25 @@ jobs:
actions: read
uses: ./.github/workflows/eslint.yml

tsc:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"

- name: Install project dependencies
run: yarn

- name: Run TypeScript compiler
run: yarn tsc

test:
needs: eslint
runs-on: ubuntu-latest
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,25 @@ jobs:
actions: read
uses: ./.github/workflows/eslint.yml

tsc:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"

- name: Install project dependencies
run: yarn

- name: Run TypeScript compiler
run: yarn tsc

test:
needs: eslint
permissions: write-all
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules/
lib/
coverage/
.env
dist/
1 change: 0 additions & 1 deletion src/transactions/ledger.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { BN } from "@secata-public/bitmanipulation-ts"
// @ts-expect-error - no types available when importing in external proj
import BIPPath from 'bip32-path'
import type Transport from "@ledgerhq/hw-transport"
import type { Signature } from "./types"
Expand Down
Loading