Skip to content

Merge pull request #63 from AkariNext/renovate/tailwind-merge-2.x-loc… #41

Merge pull request #63 from AkariNext/renovate/tailwind-merge-2.x-loc…

Merge pull request #63 from AkariNext/renovate/tailwind-merge-2.x-loc… #41

Workflow file for this run

name: Playwright Tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Copy .env file
run: cp .env.example .env
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: |
playwright-report/
screenshots/
compression-level: 9
retention-days: 30