[LW-10333] - Bump cardano sdk to get ledgerjs v7.1.2 (#1107) #837
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: Post-integration | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: self-hosted | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build dist version of Lace | |
uses: ./.github/shared/build | |
with: | |
LACE_EXTENSION_KEY: ${{ secrets.MANIFEST_PUBLIC_KEY }} | |
- name: Upload build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: lightwallet | |
path: apps/browser-extension-wallet/dist | |
- name: Run unit tests | |
env: | |
AVAILABLE_CHAINS: 'Preprod,Preview,Mainnet' | |
DEFAULT_CHAIN: 'Preprod' | |
NODE_OPTIONS: '--max_old_space_size=8192' | |
run: yarn test --maxWorkers=2 --silent |