From 97d69906aae8797eacf78bd23374aa7e7b7fb1e0 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Thu, 04 Aug 2022 15:33:23 +0000 Subject: [PATCH] Changed timeout 15s ->30s. Added installation node_modules mocha --- --- a/.docker/readyness.js +++ b/.docker/readyness.js @@ -24,7 +24,7 @@ break; } catch(e) { - await sleep(15000); + await sleep(30000); } } } --- a/.github/workflows/node_build_test.yml +++ b/.github/workflows/node_build_test.yml @@ -89,7 +89,8 @@ - name: Run tests run: | yarn install - yarn add @polkadot/api @polkadot/util mochawesome + yarn add @polkadot/api @polkadot/util mocha mochawesome + node -v echo "Ready to start tests" node .docker/readyness.js -- gitstuff