Merge pull request #150 from cosmology-tech/refactor/fixtures-tests #647
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 Registry Tests 🧪 | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository 📥 | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' # Ensures submodules are also checked out | |
- name: Setup Node.js 🌐 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: 'yarn' | |
- name: Update Git Submodules 🔄 | |
run: | | |
make update-fixtures | |
- name: Install Dependencies 🧶 | |
run: | | |
yarn install | |
yarn symlink | |
- name: Build Project 🏗️ | |
run: | | |
yarn build | |
yarn symlink | |
- name: Test @chain-registry/keplr 🔍 | |
run: cd legacy/keplr && yarn test | |
- name: Legacy Test @chain-registry/cosmostation 🔍 | |
run: cd legacy/cosmostation && yarn test | |
- name: Test @chain-registry/v2-cosmostation 🔍 | |
run: cd v2/cosmostation && yarn test | |
- name: Legacy Test @chain-registry/utils 🔍 | |
run: cd legacy/utils && yarn test | |
- name: Test @chain-registry/utils 🔍 | |
run: cd v2/utils && yarn test | |
- name: Legacy Test @chain-registry/client 🔍 | |
run: cd legacy/client && yarn test | |
- name: Test @chain-registry/client 🔍 | |
run: cd v2/client && yarn test | |
- name: Test @chain-registry/workflows 🔍 | |
run: cd workflows/workflows && yarn test | |
- name: Test @chain-registry/cli 🔍 | |
run: cd workflows/cli && yarn test |