Skip to content

Instantly share code, notes, and snippets.

@Ebazhanov
Last active May 31, 2021 06:12
Show Gist options
  • Save Ebazhanov/888fbe38c30b63927020514cba44e26a to your computer and use it in GitHub Desktop.
Save Ebazhanov/888fbe38c30b63927020514cba44e26a to your computer and use it in GitHub Desktop.
GitHub Actions job - Cypress scheduled job
#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