Skip to content

Merge pull request #321 from sima-land/314-more-e2e-tests #206

Merge pull request #321 from sima-land/314-more-e2e-tests

Merge pull request #321 from sima-land/314-more-e2e-tests #206

Workflow file for this run

name: E2E tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.37.0-jammy
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Install Playwright
run: npx playwright install
- name: Run tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30