Skip to content

Chore/pw e2e refactor #18

Chore/pw e2e refactor

Chore/pw e2e refactor #18

Workflow file for this run

name: E2E tests
on:
pull_request:
jobs:
test:
name: E2E tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run tests
run: yarn test:e2e
- name: Archive artifacts
uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: test-results
path: ./test-results