@@ -14,20 +14,25 @@ jobs:
1414 runs-on : ubuntu-latest
1515
1616 steps :
17- - name : Checkout Repository 📝
17+ - name : Checkout Repository
1818 uses : actions/checkout@v4
1919
20+ - name : Install pnpm
21+ uses : pnpm/action-setup@v4
22+ with :
23+ version : ' 9.15.4'
24+
2025 - name : Setup Node.js
2126 uses : actions/setup-node@v4
2227 with :
2328 node-version : " 20.x"
24- cache : " yarn "
29+ cache : " pnpm "
2530
2631 - name : Install Dependencies
27- run : yarn install --frozen-lockfile
32+ run : pnpm install --frozen-lockfile
2833
2934 - name : Build Project
30- run : yarn build
35+ run : pnpm run build
3136
3237 - name : Set Up Starship Infrastructure
3338 id : starship-infra
@@ -36,26 +41,31 @@ jobs:
3641 config : libs/interchainjs/starship/configs/config.workflow.yaml
3742
3843 - name : Run E2E Tests
39- run : cd ./libs/interchainjs && yarn starship:test
44+ run : cd ./libs/interchainjs && pnpm run starship:test
4045
4146 networks-cosmos :
4247 runs-on : ubuntu-latest
4348
4449 steps :
45- - name : Checkout Repository 📝
50+ - name : Checkout Repository
4651 uses : actions/checkout@v4
4752
53+ - name : Install pnpm
54+ uses : pnpm/action-setup@v4
55+ with :
56+ version : ' 9.15.4'
57+
4858 - name : Setup Node.js
4959 uses : actions/setup-node@v4
5060 with :
5161 node-version : " 20.x"
52- cache : " yarn "
62+ cache : " pnpm "
5363
5464 - name : Install Dependencies
55- run : yarn install --frozen-lockfile
65+ run : pnpm install --frozen-lockfile
5666
5767 - name : Build Project
58- run : yarn build
68+ run : pnpm run build
5969
6070 - name : Set Up Starship Infrastructure
6171 id : starship-infra
@@ -64,26 +74,31 @@ jobs:
6474 config : networks/cosmos/starship/configs/config.workflow.yaml
6575
6676 - name : Run E2E Tests
67- run : cd ./networks/cosmos && yarn starship:test
77+ run : cd ./networks/cosmos && pnpm run starship:test
6878
6979 networks-ethereum :
7080 runs-on : ubuntu-latest
7181
7282 steps :
73- - name : Checkout Repository 📝
83+ - name : Checkout Repository
7484 uses : actions/checkout@v4
7585
86+ - name : Install pnpm
87+ uses : pnpm/action-setup@v4
88+ with :
89+ version : ' 9.15.4'
90+
7691 - name : Setup Node.js
7792 uses : actions/setup-node@v4
7893 with :
7994 node-version : " 20.x"
80- cache : " yarn "
95+ cache : " pnpm "
8196
8297 - name : Install Dependencies
83- run : yarn install --frozen-lockfile
98+ run : pnpm install --frozen-lockfile
8499
85100 - name : Build Project
86- run : yarn build
101+ run : pnpm run build
87102
88103 - name : Set Up Starship Infrastructure
89104 id : starship-infra
92107 config : networks/ethereum/starship/configs/eth-lite.yaml
93108
94109 - name : Run E2E Tests
95- run : cd ./networks/ethereum && yarn starship:test && yarn test:utils
110+ run : cd ./networks/ethereum && pnpm run starship:test && pnpm run test:utils
0 commit comments