e2e: add general tests for mobile, specially test main menu #53
Workflow file for this run
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 tests with firefox | |
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/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- uses: patrickedqvist/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
max_timeout: 1200 | |
check_interval: 20 | |
- run: yarn | |
- run: yarn playwright install --with-deps firefox | |
- run: yarn e2e-firefox tests/4*.ts | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: e2e-screenshots-on-fail | |
path: output/ # or path/to/artifact |