diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2a5eccf --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI + +on: + pull_request: + branches: + - main + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Run Cypress tests 🧪 + uses: cypress-io/github-action@v6 + with: + record: true + tag: local + env: + CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}