diff --git a/.github/workflows/e2e-cypress-tests.yml b/.github/workflows/e2e-cypress-tests.yml index c0aaea859..40d87cdd5 100644 --- a/.github/workflows/e2e-cypress-tests.yml +++ b/.github/workflows/e2e-cypress-tests.yml @@ -15,7 +15,16 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Cypress.io + - name: Set up Node.js + uses: actions/setup-node@v3 + with: + node-version: "18" + + - name: Install dependencies + run: npm install + working-directory: e2e-tests + + - name: Run Cypress tests uses: cypress-io/github-action@v6.5.0 with: working-directory: e2e-tests @@ -25,12 +34,12 @@ jobs: if: failure() with: name: cypress-screenshots - path: cypress/screenshots + path: e2e-tests/cypress/screenshots if-no-files-found: ignore - name: Upload Cypress videos uses: actions/upload-artifact@v3 with: name: cypress-videos - path: cypress/videos + path: e2e-tests/cypress/videos if-no-files-found: ignore