From 3435939c3b890f96bfede4f30865b91cf5224af7 Mon Sep 17 00:00:00 2001 From: Miguel Garcia Garcia Date: Wed, 6 Dec 2023 16:31:59 +0100 Subject: [PATCH] add cypress workflow --- .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 0000000..2c5f308 --- /dev/null +++ b/.github/workflows/cypress.yml @@ -0,0 +1,17 @@ +name: Cypress + +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: yarn + start: yarn dev