Ligretto schedule-E2E #312
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
name: 'Ligretto schedule-E2E' | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 15 * * *' | |
jobs: | |
e2e: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- uses: ./.github/actions/prepare-nodejs | |
name: Prepare Node.js | |
- name: Install Playwright Browsers | |
run: yarn dlx playwright@1.42.1 install --with-deps chromium | |
- name: Run playwright tests | |
run: yarn e2e:start | |
env: | |
LIGRETTO_APP_URL: https://ligretto.app/ | |
- uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 2 |