From 097014dccd556f92228506ff2cfc55819b1eb03d Mon Sep 17 00:00:00 2001 From: Joshua Date: Sat, 18 Mar 2023 11:03:56 +0100 Subject: [PATCH] cypress:run on Push/PR --- .github/assets/workflows/cypress.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/assets/workflows/cypress.yml diff --git a/.github/assets/workflows/cypress.yml b/.github/assets/workflows/cypress.yml new file mode 100644 index 0000000..c177ef9 --- /dev/null +++ b/.github/assets/workflows/cypress.yml @@ -0,0 +1,12 @@ +name: Cypress +on: [push, pull_request, workflow_call] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install Dependencies + run: npm i + - name: Test + run: npm run cypress:run