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