Merge pull request #4278 from serlo/chore/minor-upgrades #1757
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: e2e | |
on: | |
workflow_dispatch: | |
push: | |
# workflow is triggered on staging and branches starting with 'e2e' | |
# but tests always run against staging preview build | |
branches: | |
- staging | |
- e2e** | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./e2e-tests | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: actions/checkout@v4 | |
- run: yarn | |
- run: yarn playwright install --with-deps chromium | |
- uses: patrickedqvist/wait-for-vercel-preview@v1.3.2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
max_timeout: 1200 | |
check_interval: 20 | |
- run: yarn e2e-workers | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: e2e-screenshots-on-fail | |
path: e2e-tests/output/ # or path/to/artifact |