Scheduled E2E on Chrome #168
This file contains hidden or 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
| name: Scheduled E2E on Chrome | |
| on: | |
| schedule: | |
| - cron: '0 7 * * 0' # Runs every Sunday at 02:00 Montreal time (EST) / 03:00 Montreal time (EDT) | |
| jobs: | |
| cypress-run: | |
| runs-on: ubuntu-latest | |
| # let's make sure our tests pass on Chrome browser | |
| name: Scheduled E2E on Chrome | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set Node.js 16 | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - uses: cypress-io/github-action@v5 | |
| with: | |
| build: yarn build:prod | |
| start: yarn start | |
| browser: chrome |