From 6b82aff9602cc38fe2039cfb04e6e7dade305a5f Mon Sep 17 00:00:00 2001 From: Gustavo Minetoma Date: Fri, 24 Jan 2025 22:58:00 +0900 Subject: [PATCH] refactor: run e2e tests using `yarn test:e2e` Updated the configuration to ensure GitHub Actions runs e2e tests using our custom command (`yarn test:e2e`). This guarantees that the tests use our defined configurations, providing consistency between local development and CI environments. --- .github/workflows/cypress.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index d2783502..98bbdf37 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -36,6 +36,8 @@ jobs: - name: Run Cypress tests uses: cypress-io/github-action@v6 + with: + command: yarn test:e2e - name: Upload screenshots uses: actions/upload-artifact@v3