git.delta.rocks / unique-network / refs/commits / 918c44a5537b

difftreelog

tests: rename step and remove orphaned containers

Alexander Aksenov2022-08-18parent: #d948a27.patch.diff
in: master

1 file changed

modified.github/workflows/dev-build-tests.ymldiffbeforeafterboth
89 run: cat .docker/docker-compose.${{ matrix.network }}.yml89 run: cat .docker/docker-compose.${{ matrix.network }}.yml
9090
91 - name: Build the stack91 - name: Build the stack
92 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build92 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.${{ matrix.network }}.yml" up -d --build --remove-orphans
9393
94 - uses: actions/setup-node@v394 - uses: actions/setup-node@v3
95 with:95 with:
111 id: test-report111 id: test-report
112 if: success() || failure() # run this step even if previous step failed112 if: success() || failure() # run this step even if previous step failed
113 with:113 with:
114 name: Tests ${{ matrix.network }} # Name of the check run which will be created114 name: int test results: ${{ matrix.network }} # Name of the check run which will be created
115 path: tests/mochawesome-report/test-*.json # Path to test results115 path: tests/mochawesome-report/test-*.json # Path to test results
116 reporter: mochawesome-json116 reporter: mochawesome-json
117 fail-on-error: 'false'117 fail-on-error: 'false'
180 run: cat .docker/docker-compose.unit.yml180 run: cat .docker/docker-compose.unit.yml
181181
182 - name: Build the stack182 - name: Build the stack
183 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.unit.yml" up -d --build183 run: docker-compose -f ".docker/docker-compose-dev.yaml" -f ".docker/docker-compose.unit.yml" up -d --build --remove-orphans
184184
185185
186 - name: Stop running containers186 - name: Stop running containers