From 95775118f0d72b9842552b66e116c12fe10c30ed Mon Sep 17 00:00:00 2001 From: Stephen Rugh Date: Mon, 23 Sep 2024 09:37:07 -0500 Subject: [PATCH] Revert "Added missing run-e2e-tests.yaml file to GH workflows (#109)" This reverts commit 0f0d9f426afc25884a5fe270529b3e8386fa1aef. --- .github/workflows/run-e2e-tests.yaml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/run-e2e-tests.yaml diff --git a/.github/workflows/run-e2e-tests.yaml b/.github/workflows/run-e2e-tests.yaml deleted file mode 100644 index 0f1086a008..0000000000 --- a/.github/workflows/run-e2e-tests.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Cypress E2E Tests -on: push -jobs: - cypress-run: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Install root dependencies - run: npm ci - - name: Start server in the background - run: npm start & - - - name: Install Cypress and run tests - uses: cypress-io/github-action@v6 - with: - working-directory: cypress - browser: chrome - wait-on: 'http://localhost:3000' - config: baseUrl=http://localhost:3000 - - uses: actions/upload-artifact@v4 - if: failure() - with: - name: cypress-screenshots - path: cypress/screenshots - if-no-files-found: ignore