CRON Frontend E2E Nightly Against PROD #14
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
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Run Playwright E2E Nightly Against PROD | |
on: | |
schedule: | |
- cron: "30 2 * * *" # Every night at 2:30am | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: frontend | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 19 | |
- run: npm ci | |
- run: npm run e2e-prod |