Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 30 additions & 15 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,25 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository 📝
- name: Checkout Repository
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '9.15.4'

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache: "pnpm"

- name: Install Dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Build Project
run: yarn build
run: pnpm run build

- name: Set Up Starship Infrastructure
id: starship-infra
Expand All @@ -36,26 +41,31 @@ jobs:
config: libs/interchainjs/starship/configs/config.workflow.yaml

- name: Run E2E Tests
run: cd ./libs/interchainjs && yarn starship:test
run: cd ./libs/interchainjs && pnpm run starship:test

networks-cosmos:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository 📝
- name: Checkout Repository
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '9.15.4'

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache: "pnpm"

- name: Install Dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Build Project
run: yarn build
run: pnpm run build

- name: Set Up Starship Infrastructure
id: starship-infra
Expand All @@ -64,26 +74,31 @@ jobs:
config: networks/cosmos/starship/configs/config.workflow.yaml

- name: Run E2E Tests
run: cd ./networks/cosmos && yarn starship:test
run: cd ./networks/cosmos && pnpm run starship:test

networks-ethereum:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository 📝
- name: Checkout Repository
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '9.15.4'

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache: "pnpm"

- name: Install Dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Build Project
run: yarn build
run: pnpm run build

- name: Set Up Starship Infrastructure
id: starship-infra
Expand All @@ -92,4 +107,4 @@ jobs:
config: networks/ethereum/starship/configs/eth-lite.yaml

- name: Run E2E Tests
run: cd ./networks/ethereum && yarn starship:test && yarn test:utils
run: cd ./networks/ethereum && pnpm run starship:test && pnpm run test:utils
15 changes: 10 additions & 5 deletions .github/workflows/injective-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,25 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository 📝
- name: Checkout Repository
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '9.15.4'

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache: "pnpm"

- name: Install Dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Build Project
run: yarn build
run: pnpm run build

- name: Set Up Starship Infrastructure
id: starship-infra
Expand All @@ -30,4 +35,4 @@ jobs:
config: networks/injective/starship/configs/config.workflow.yaml

- name: Run E2E Tests
run: cd ./networks/injective && yarn starship:test
run: cd ./networks/injective && pnpm run starship:test
18 changes: 12 additions & 6 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,25 @@ jobs:
interchainjs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository 📝
- name: Checkout Repository
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '9.15.4'

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache: "pnpm"

- name: Install Dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Build Project
run: yarn build
- name: test
run: yarn test
run: pnpm run build

- name: Run Tests
run: pnpm run test
15 changes: 10 additions & 5 deletions .github/workflows/solana-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,25 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository 📝
- name: Checkout Repository
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '9.15.4'

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache: "pnpm"

- name: Install Dependencies
run: yarn install --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Build Project
run: yarn build
run: pnpm run build

- name: Set Up Starship Infrastructure
id: starship-infra
Expand Down Expand Up @@ -144,4 +149,4 @@ jobs:
fi

cd ./networks/solana
yarn test --runInBand
pnpm run test --runInBand
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
**/dist
**/dist_spec
**/yarn-error.log
**/pnpm-debug.log
lerna-debug.log

.vscode/settings.json
Expand All @@ -18,4 +19,4 @@ debug/
# Runtime-generated port-forward environment files
**/.pf-env

.augment/
.augment/
File renamed without changes.
Loading
Loading