Browse Source

github workflow: create cli config dir before using joystream-cli

Mokhtar Naamani 3 years ago
parent
commit
904dbe9508
1 changed files with 5 additions and 1 deletions
  1. 5 1
      .github/workflows/run-network-tests.yml

+ 5 - 1
.github/workflows/run-network-tests.yml

@@ -107,7 +107,11 @@ jobs:
       - name: Install joystream-cli @joystream/cli/0.5.1
         run: npm -g install @joystream/cli
       - name: Execute network tests
-        run: RUNTIME=sumer HOME=$(pwd) tests/network-tests/run-migration-tests.sh full
+        run: |
+          export HOME=$(pwd)
+          mkdir -p ${HOME}/.local/share/joystream-cli
+          export RUNTIME=sumer
+          tests/network-tests/run-migration-tests.sh
 
   basic_runtime:
     name: Integration Tests (New Chain)