fix(cardano): fee estimate for set-max output #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "@trezor/connect" | |
# run only if there are changes in connect or related libs paths | |
on: | |
push: | |
paths: | |
- "packages/blockchain-link" | |
- "packages/connect/**" | |
- "packages/connect-common/**" | |
- "packages/connect-iframe/**" | |
- "packages/connect-web/**" | |
- "packages/transport" | |
- "packages/utxo-lib" | |
- "packages/utils" | |
- "docker" | |
- "submodules/trezor-common" | |
- "yarn.lock" | |
jobs: | |
# todo: meaning of 'build' job is questionable. only 'web' tests use part of this jobs output | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: node ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
cache-dependency-path: "**/yarn.lock" | |
- run: sed -i "/\"node\"/d" package.json | |
- run: yarn install | |
- run: yarn build:libs | |
- run: yarn workspace @trezor/connect-iframe build | |
- run: yarn workspace @trezor/connect-web build | |
# upload + download takes longer than doing yarn build:libs | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: build-artifact | |
path: packages/connect-web/build | |
api: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: "init authorizeCoinjoin cancelCoinjoinAuthorization passphrase unlockPath setBusy override checkFirmwareAuthenticity" | |
management: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "applySettings,applyFlags,getFeatures,getFirmwareHash" | |
btc-sign: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "signTransaction" | |
btc-others: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "getAccountInfo,getAccountDescriptor,getAddress,getPublicKey,signMessage,verifyMessage,composeTransaction,getOwnershipId,getOwnershipProof" | |
stellar: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "stellarGetAddress,stellarSignTransaction" | |
cardano: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "cardanoGetAddress,cardanoGetNativeScriptHash,cardanoGetPublicKey,cardanoSignTransaction" | |
eos: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "eosGetPublicKey,eosSignTransaction" | |
ethereum: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "ethereumGetAddress,ethereumGetPublicKey,ethereumSignMessage,ethereumSignTransaction,ethereumVerifyMessage,ethereumSignTypedData" | |
nem: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "nemGetAddress,nemSignTransaction" | |
ripple: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "rippleGetAddress,rippleSignTransaction" | |
tezos: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "tezosGetAddress,tezosGetPublicKey,tezosSignTransaction" | |
binance: | |
needs: [build] | |
uses: ./.github/workflows/connect-test-params.yml | |
with: | |
test-pattern: methods | |
methods: "binanceGetAddress,binanceGetPublicKey,binanceSignTransaction" |