We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 569f097 commit 1ce6c90Copy full SHA for 1ce6c90
.github/workflows/ci.yml
@@ -32,6 +32,13 @@ jobs:
32
with:
33
node-version: 20
34
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
+
42
- name: Install Dependencies for ${{ matrix.directory }}
43
working-directory: ./${{ matrix.directory }}
44
run: npm install
0 commit comments