difftreelog
Yet another test.
in: master
1 file changed
.github/workflows/node_build_test.ymldiffbeforeafterboth98 yarn --pure-lockfile98 yarn --pure-lockfile9999100 - name: Run tests100 - name: Run tests101 run: |101 run: |102 cd tests102 node .docker/readyness.js103 cd tests103 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/106107107 - name: Test Report108# - name: Test Report108 uses: phoenix-actions/test-reporting@v8109# uses: phoenix-actions/test-reporting@v8109 id: test-report # Set ID reference for step110# id: test-report # Set ID reference for step110 if: success() || failure() # run this step even if previous step failed111# if: success() || failure() # run this step even if previous step failed111 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 created113 path: tests/mochawesome-report/test-*.json # Path to test results114# path: tests/mochawesome-report/test-*.json # Path to test results114 reporter: mochawesome-json115# reporter: mochawesome-json115 fail-on-error: 'false'116# fail-on-error: 'false'116117117 - name: Stop running containers118# - name: Stop running containers118 if: always() # run this step always119# if: always() # run this step always119 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" down120121