add basic e2e tests

This commit is contained in:
2026-04-04 19:33:04 +02:00
parent 94fb38e038
commit 5fce1d591f
14 changed files with 519 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM mcr.microsoft.com/playwright:v1.59.1-noble
WORKDIR /work
RUN apt-get update \
&& apt-get install -y --no-install-recommends libnss3-tools \
&& rm -rf /var/lib/apt/lists/*
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . .
RUN chmod +x /work/docker-entrypoint.sh
ENTRYPOINT ["/work/docker-entrypoint.sh"]
CMD ["yarn", "test"]