From e92a991b9017f1f4df969e8b4e93bf87f3f96908 Mon Sep 17 00:00:00 2001 From: Daniel <45217974+w3bdesign@users.noreply.github.com> Date: Mon, 22 Jul 2024 00:52:26 +0200 Subject: [PATCH] Create cypress.yml --- .github/workflows/cypress.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..cc558f26 --- /dev/null +++ b/.github/workflows/cypress.yml @@ -0,0 +1,17 @@ +name: Cypress 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 + with: + build: npm run build + start: npm start \ No newline at end of file