git.delta.rocks / unique-network / refs/commits / 69b908e261ea

difftreelog

Yet another test.

Alexander Aksenov2022-08-04parent: #555373d.patch.diff
in: master

1 file changed

modified.github/workflows/node_build_test.ymldiffbeforeafterboth
98 yarn --pure-lockfile98 yarn --pure-lockfile
9999
100 - name: Run tests100 - name: Run tests
101 run: |101 run: |
102 cd tests102 node .docker/readyness.js
103 cd tests
103 NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}104 NOW=$(date +%s) && yarn test --reporter mochawesome --reporter-options reportFilename=test-${NOW}
104 env:105 env:
105 RPC_URL: http://127.0.0.1:9933/106 RPC_URL: http://127.0.0.1:9933/
106107
107 - name: Test Report108# - name: Test Report
108 uses: phoenix-actions/test-reporting@v8109# uses: phoenix-actions/test-reporting@v8
109 id: test-report # Set ID reference for step110# id: test-report # Set ID reference for step
110 if: success() || failure() # run this step even if previous step failed111# if: success() || failure() # run this step even if previous step failed
111 with:112# with:
112 name: Tests ${{ matrix.network }} # Name of the check run which will be created113# name: Tests ${{ matrix.network }} # Name of the check run which will be created
113 path: tests/mochawesome-report/test-*.json # Path to test results114# path: tests/mochawesome-report/test-*.json # Path to test results
114 reporter: mochawesome-json115# reporter: mochawesome-json
115 fail-on-error: 'false'116# fail-on-error: 'false'
116117
117 - name: Stop running containers118# - name: Stop running containers
118 if: always() # run this step always119# if: always() # run this step always
119 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down120# run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" down
120121