fix ledger package bug due to @cosmjs/amino upgrade, fixed some type errors, and use node v22 in CI #2007
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: Run Tests | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, reopened] | |
| workflow_dispatch: | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout 🛎️ | |
| uses: actions/checkout@v4 | |
| - name: node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.9.0 | |
| - name: Deps | |
| run: | | |
| yarn | |
| yarn build | |
| - name: Test | |
| run: | | |
| npx --yes lerna@7 run test -- --passWithNoTests |