fix: update manual sub account odering behavior #4062
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master] | |
| jobs: | |
| lint: | |
| name: Lint Check | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./ | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Checkout node action | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache-dependency-path: 'yarn.lock' | |
| - name: 'Setup' | |
| uses: ./.github/actions/setup | |
| - name: Lint | |
| run: yarn lint | |
| typecheck: | |
| name: Type Check | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./ | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Checkout node action | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache-dependency-path: '**/yarn.lock' | |
| - name: 'Setup' | |
| uses: ./.github/actions/setup | |
| - name: Build packages | |
| run: yarn build:packages | |
| - name: Check Types | |
| run: yarn typecheck | |
| tests: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./ | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache-dependency-path: '**/yarn.lock' | |
| - name: 'Setup' | |
| uses: ./.github/actions/setup | |
| - name: Runs compile asset script | |
| run: | | |
| cd ./packages/wallet-sdk | |
| yarn build | |
| node ./compile-assets.cjs | |
| cd ../../ | |
| - name: Run Unit Tests | |
| run: yarn test |