From c982d63b9c027a20864a44e1e94f527f8fc8d90c Mon Sep 17 00:00:00 2001 From: Maximilian Oertel Date: Mon, 14 Oct 2024 16:19:28 +0100 Subject: [PATCH] Switch to 0.0.0.0 baseUrl --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b03f70c1..9bc50651a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,6 +79,12 @@ jobs: - name: Build application run: npm run build + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: build + path: dist + # ––––––––––––––––––––––––––––––––––––––––––––––– # # End-to-end tests # ––––––––––––––––––––––––––––––––––––––––––––––– # @@ -108,7 +114,7 @@ jobs: - name: Execute Cypress tests uses: cypress-io/github-action@v6 env: - CYPRESS_BASE_URL: 'http://localhost:4173' + CYPRESS_BASE_URL: 'http://0.0.0.0:4173' CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} COMMIT_INFO_MESSAGE: '${{ github.event.pull_request.title }} (#${{ github.event.pull_request.number }})' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -153,7 +159,7 @@ jobs: - name: Execute Cypress tests uses: cypress-io/github-action@v6 env: - CYPRESS_BASE_URL: 'http://localhost:4173' + CYPRESS_BASE_URL: 'http://0.0.0.0:4173' CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} COMMIT_INFO_MESSAGE: '${{ github.event.pull_request.title }} (#${{ github.event.pull_request.number }})' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}