Last active
May 31, 2021 06:12
-
-
Save Ebazhanov/888fbe38c30b63927020514cba44e26a to your computer and use it in GitHub Desktop.
GitHub Actions job - Cypress scheduled job
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#https://github.com/marketplace/actions/schedule-job-action | |
name: scheduled job | |
on: | |
schedule: | |
#https://crontab.guru/#0_0_*_*_* | |
- cron: "0 0 * * *" | |
jobs: | |
#https://docs.cypress.io/guides/continuous-integration/github-actions#Cypress-GitHub-Action | |
chrome: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cypress-io/[email protected] | |
with: | |
browser: chrome | |
headless: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment