From bc9c800b8ef7e4651bbc0da254f868baa5d043cc Mon Sep 17 00:00:00 2001 From: Renee Pinna <130389530+reneepinna@users.noreply.github.com> Date: Sun, 22 Oct 2023 08:46:44 -0600 Subject: [PATCH] Create main.yml Switch from Circle CI to Github Workflows --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 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..b3fab4a --- /dev/null +++ b/.github/workflows/main.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