From 76b495d461e314ee73663ae2eba9bd090d7c2b14 Mon Sep 17 00:00:00 2001 From: anarch3 Date: Mon, 21 Nov 2022 14:20:46 -0500 Subject: [PATCH] add github action --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 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..a25ab10 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: Cypress Testing + +on: [push] + +jobs: + cypress-run : + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Cypress run + uses: cypress-io/github-action@v4.x.xd + with: + build: npm run build + start: npm start \ No newline at end of file