Skip to content

Commit 1ce6c90

Browse files
npm i the shared folder first for tests in export-and-sign
1 parent 569f097 commit 1ce6c90

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ jobs:
3232
with:
3333
node-version: 20
3434

35+
# Some frames (like import/export-and-sign) depend on code in ./shared.
36+
# Ensure shared's dependencies (including bech32) are installed before running their tests.
37+
- name: Install Dependencies for shared (for dependent frames)
38+
if: ${{ matrix.directory == 'import' || matrix.directory == 'export-and-sign' }}
39+
working-directory: ./shared
40+
run: npm install
41+
3542
- name: Install Dependencies for ${{ matrix.directory }}
3643
working-directory: ./${{ matrix.directory }}
3744
run: npm install

0 commit comments

Comments
 (0)