From f07032209498eaf2e289645ff709e729a6c7d6bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Sch=C3=BCpbach?= Date: Sat, 23 Jul 2022 17:30:36 +0200 Subject: [PATCH] Add GitHub Action for cypress --- .github/workflows/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..27f3811 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,10 @@ +name: End-to-end tests +on: [push] +jobs: + cypress-run: + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Cypress run + uses: cypress-io/github-action@v4