Skip to content

Fix use package version from imported json instead of direct import #8999

Fix use package version from imported json instead of direct import

Fix use package version from imported json instead of direct import #8999

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
- staging
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
cache-dependency-path: yarn.lock
- name: Fetch submodule
run: git submodule update --init --recursive
- name: Install dependencies
run: YARN_ENABLE_SCRIPTS=false yarn install --immutable
- name: Generate cosmjs types
run: yarn run codegen
working-directory: ./packages/client
- name: Test
run: yarn run test
working-directory: ./packages/client