From d4c925d968b9b6fb2a427a7d34d274193b020847 Mon Sep 17 00:00:00 2001 From: Mike Gunn Date: Tue, 25 Apr 2023 13:41:34 -0400 Subject: [PATCH] feat(github actions): add cypress E2E test --- .github/workflows/cypress_tests.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/cypress_tests.yml diff --git a/.github/workflows/cypress_tests.yml b/.github/workflows/cypress_tests.yml new file mode 100644 index 0000000000..7ee72f8368 --- /dev/null +++ b/.github/workflows/cypress_tests.yml @@ -0,0 +1,24 @@ +name: Cypress E2E Tests + +on: push + +jobs: + cypress-run: + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install Cypress + run: npm i cypress@^12.10 + + - name: Cypress run + uses: cypress-io/github-action@v5 + with: + # project: ./web/client/ + working-directory: ./web/client + record: true + # build: npm run build + # start: npm start + # browser: chrome + install: false \ No newline at end of file