Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Feature/migration usequery state #282

Feature/migration usequery state

Feature/migration usequery state #282

Workflow file for this run

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