diff --git a/.github/workflow/playwright.yml b/.github/workflow/playwright.yml new file mode 100644 index 0000000000..29c87ca950 --- /dev/null +++ b/.github/workflow/playwright.yml @@ -0,0 +1,28 @@ +name: Playwright Tests +on: + push: + branches: [ main, master ] + pull_request: + branches: [ main, master ] +jobs: + tests_e2e: + name: Run end-to-end tests + timeout-minutes: 60 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + - name: Install dependencies + run: npm ci + - name: Install Playwright Browsers + run: npx playwright install --with-deps + - name: Run Playwright tests + run: npx playwright test + - uses: actions/upload-artifact@v3 + if: always() + with: + name: playwright-report + path: e2e/playwright-report/ + retention-days: 30 diff --git a/client/src/components/ui/Landing.jsx b/client/src/components/ui/Landing.jsx index 3412018382..27d4066c48 100644 --- a/client/src/components/ui/Landing.jsx +++ b/client/src/components/ui/Landing.jsx @@ -32,7 +32,7 @@ export default function Landing() { return (