Improve the experience of testing pull requests (#5942)

This commit is contained in:
Louis Lam
2025-06-23 15:24:49 +08:00
committed by GitHub
parent 59d10062ca
commit b55d6e8911
7 changed files with 112 additions and 34 deletions

View File

@@ -79,6 +79,10 @@ USER node
RUN git config --global user.email "no-reply@no-reply.com"
RUN git config --global user.name "PR Tester"
RUN git clone https://github.com/louislam/uptime-kuma.git .
# Hide the warning when running in detached head state
RUN git config --global advice.detachedHead false
RUN npm ci
EXPOSE 3000 3001