Skip to content

Commit

Permalink
Add workflow to check PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
wlsf82 committed Aug 1, 2024
1 parent 77cb148 commit 51f394d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 51f394d

Please sign in to comment.