Fixes for hanging jobs, more verbose ci output

This commit is contained in:
Jamie Curnow
2024-11-12 15:36:38 +10:00
parent 47d7896301
commit 61c41b8ec3
5 changed files with 15 additions and 6 deletions

View File

@ -2,9 +2,11 @@ FROM cypress/included:13.15.1
COPY --chown=1000 ./test /test
# Disable Cypress CLI colors
ENV FORCE_COLOR=0
ENV NO_COLOR=1
# Disable Cypress CLI colors by default
ARG FORCE_COLOR=0
ARG NO_COLOR=1
ENV FORCE_COLOR=$FORCE_COLOR \
NO_COLOR=$NO_COLOR
WORKDIR /test
RUN yarn install && yarn cache clean