Update new version of interchainjs and related code change #583
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: Run Tests | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, reopened] | |
| workflow_dispatch: | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository 🛎️ | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - name: Install Dependencies | |
| run: yarn install | |
| - name: Build Project | |
| run: yarn build | |
| - name: Test @cosmwasm/ts-codegen | |
| run: cd packages/ts-codegen && yarn test | |
| - name: Test @cosmwasm/ts-codegen-ast | |
| run: cd ./packages/ast && yarn test |