Skip to content

Feature/responsive tweeks #604

Feature/responsive tweeks

Feature/responsive tweeks #604

Workflow file for this run

name: e2e:tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
e2e_client:
timeout-minutes: 30
runs-on: ubuntu-22.04
environment: production
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install project dependencies
run: yarn install --immutable
- name: Playwright install
run: yarn playwright install --with-deps chrome
- name: Run Playwright tests
run: yarn playwright test
env:
NEXT_PUBLIC_API_URL: ${{ vars.NEXT_PUBLIC_API_URL }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30