From 703ec574cf4188bd12fa2a276455104e282fe7a5 Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Tue, 28 Jul 2020 21:52:52 +0900 Subject: [PATCH] ci: enhance version log --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 653da9271..da705e2b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,8 +37,8 @@ ENV GITHUB_REPOSITORY_OWNER="peaceiris" ENV GITHUB_ACTIONS="true" ENV CI="true" -RUN node -v && \ - npm -v && \ +RUN echo "node version: $(node -v)" && \ + echo "npm version: $(npm -v)" && \ git --version && \ git config --global init.defaultBranch main && \ git config --global init.defaultBranch