Skip to content

Commit 9539ae7

Browse files
committed
Upload integration artifacts
1 parent 3a4de53 commit 9539ae7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,19 @@ jobs:
4747
docker-compose -f ./docker/docker-compose.yml build
4848
docker-compose -f ./docker/docker-compose.yml run --rm e2e
4949
working-directory: ui-tests
50+
51+
- name: Upload UI Test artifacts
52+
if: always()
53+
uses: actions/upload-artifact@v2
54+
with:
55+
name: ui-test-output
56+
path: |
57+
ui-tests/test-results
58+
59+
- name: Stop containers
60+
if: always()
61+
run: |
62+
# Print jupyterlab logs before removing the containers using the container name set in docker-compose file
63+
docker logs jupyterlab
64+
docker-compose -f ./docker/docker-compose.yml down
5065

0 commit comments

Comments
 (0)