From 9f1621bccc3c6d6b84f8e9e01e9a6bc7499b6532 Mon Sep 17 00:00:00 2001 From: marius-mather <61438033+marius-mather@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:22:27 +1000 Subject: [PATCH] Create cypress.yml for end-to-end testing --- .github/workflows/cypress.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/cypress.yml diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml new file mode 100644 index 0000000..a9b7b20 --- /dev/null +++ b/.github/workflows/cypress.yml @@ -0,0 +1,12 @@ +name: End-to-end tests +on: push +jobs: + cypress-run: + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@v4 + # Install npm dependencies, cache them correctly + # and run all Cypress tests + - name: Cypress run + uses: cypress-io/github-action@v6