CRON Frontend E2E Nightly Against PROD #240
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: CRON Frontend 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@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: frontend/package.json | |
- run: npm ci | |
- run: npm run e2e-prod |