services:
  playwright:
    image: mcr.microsoft.com/playwright:v1.59.1-jammy
    working_dir: /work
    volumes:
      - .:/work
    environment:
      - CI=true
    command: sh -c "npm ci && npm run build && npx playwright test"
