Skip to content

Commit 45d244b

Browse files
committed
...
1 parent 6f03c3b commit 45d244b

3 files changed

Lines changed: 5 additions & 15 deletions

File tree

.github/workflows/collator-selection.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ jobs:
143143
id: alive1
144144
if: ${{ !cancelled() && steps.bdk.outcome == 'success' }}
145145
run: |
146+
yarn
146147
../scripts/wait_for_first_block.sh
147148
env:
148149
RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}

.github/workflows/main-process-update.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ jobs:
252252
id: alive3
253253
if: ${{ !cancelled() && steps.reconcile2.outcome == 'success' }}
254254
run: |
255-
yarn
255+
yarn
256256
../scripts/wait_for_first_block.sh
257257
env:
258258
RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}
@@ -278,7 +278,7 @@ jobs:
278278
if: ${{ !cancelled() && steps.alive3.outcome == 'success' }}
279279
run: |
280280
echo "Ready to start Parallel Substrate tests"
281-
NOW=$(date +%s) && yarn testSubParallel --reporter mochawesome --reporter-options
281+
NOW=$(date +%s) && yarn testSubParallel --reporter tap
282282
env:
283283
RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}
284284

@@ -287,7 +287,7 @@ jobs:
287287
if: ${{ !cancelled() && steps.alive3.outcome == 'success' }}
288288
run: |
289289
echo "Ready to start Sequential tests"
290-
NOW=$(date +%s) && yarn testSubSequential --reporter mochawesome
290+
NOW=$(date +%s) && yarn testSubSequential --reporter tap
291291
env:
292292
RPC_URL: ${{ env.RELAY_UNIQUE_HTTP_URL }}
293293

.github/workflows/yarn-dev.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,23 +60,12 @@ jobs:
6060
working-directory: js-packages/tests
6161
run: |
6262
yarn install
63-
yarn add mochawesome
6463
../scripts/wait_for_first_block.sh
6564
echo "Ready to start tests"
66-
NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}
65+
NOW=$(date +%s) && yarn test --reporter tap
6766
env:
6867
RPC_URL: http://127.0.0.1:9944/
6968

70-
- name: Test Report
71-
uses: phoenix-actions/test-reporting@v15
72-
id: test-report
73-
if: success() || failure() # run this step even if previous step failed
74-
with:
75-
name: int test results - ${{ matrix.network }} # Name of the check run which will be created
76-
path: js-packages/tests/mochawesome-report/test-*.json # Path to test results
77-
reporter: mochawesome-json
78-
fail-on-error: 'false'
79-
8069
- name: Read output variables
8170
run: |
8271
echo "url is ${{ steps.test-report.outputs.runHtmlUrl }}"

0 commit comments

Comments
 (0)