Fix tests in keplr and utils using fixture files instead of exported assets and ibcs #266
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: Run Tests | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened] | |
workflow_dispatch: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout 🛎️ | |
uses: actions/[email protected] | |
- name: node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.0 | |
- name: deps | |
run: yarn | |
- name: bootstrap | |
run: yarn bootstrap | |
- name: build | |
run: yarn build | |
- name: keplr | |
run: cd ./packages/keplr && yarn test | |
- name: utils | |
run: cd ./packages/utils && yarn test |