diff --git a/.github/workflows/container_test.yml b/.github/workflows/container_test.yml index 1ad69cfed..d83c6d17b 100644 --- a/.github/workflows/container_test.yml +++ b/.github/workflows/container_test.yml @@ -26,3 +26,8 @@ jobs: - uses: actions/checkout@v4 - name: Navigate to test script and run run: cd .github/scripts && bash docker-create.sh -t + - uses: actions/upload-artifact@v4 + if: success() || failure() + with: + name: e2e results + path: src/test/e2e/cypress/reports/mochawesome/ diff --git a/.github/workflows/heroku_tests.yml b/.github/workflows/heroku_tests.yml index 8e96988dc..5f90a9557 100644 --- a/.github/workflows/heroku_tests.yml +++ b/.github/workflows/heroku_tests.yml @@ -24,3 +24,8 @@ jobs: - name: Run Tests run: | cd src/test/e2e && npx cypress run --config-file src/test/K8s-tests/cypress.config.js && minikube delete + - uses: actions/upload-artifact@v4 + if: success() || failure() + with: + name: e2e results + path: src/test/e2e/cypress/reports/mochawesome/