Skip to content

Commit

Permalink
Merge pull request #185 from nvh95/e2e-git-action
Browse files Browse the repository at this point in the history
feat: Run cypress on documentation site periodically
  • Loading branch information
ntt261298 authored Jul 5, 2022
2 parents e221db1 + 04450b6 commit 52150fc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: End-to-end tests
on:
schedule:
# Runs at 10h and 22h everyday
- cron: '0 10,22 * * *'
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run Cypress
uses: cypress-io/github-action@v2
with:
working-directory: docs-e2e-testing

0 comments on commit 52150fc

Please sign in to comment.