fix: avoid issue with case sensitivity of repo names (#1179)

* fix: avoid issue with case sensitivity in condition

* chore: upgrade jest to v28
This commit is contained in:
Peter Evans 2022-05-08 17:37:36 +09:00 committed by GitHub
parent af7c021bb9
commit f094b77505
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 3926 additions and 1699 deletions

View file

@ -10,7 +10,7 @@ if [[ "$(docker images -q $IMAGE 2> /dev/null)" == "" || $ARG1 == "build" ]]; th
cat > Dockerfile << EOF
FROM node:12-alpine
RUN apk --no-cache add git git-daemon
RUN npm install jest --global
RUN npm install jest jest-environment-jsdom --global
WORKDIR /cpr
COPY __test__/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]